Author: erwan
Date: Wed Mar 23 11:51:33 2011 New Revision: 1084551 URL: http://svn.apache.org/viewvc?rev=1084551&view=rev Log: Adding a new field for seleniumTestSuitePaths, testSuiteType, which should be filled with HTML or XML Modified: ofbiz/trunk/applications/marketing/data/MarketingDemoData.xml ofbiz/trunk/framework/example/data/ExampleDemoData.xml ofbiz/trunk/framework/testtools/entitydef/entitymodel.xml Modified: ofbiz/trunk/applications/marketing/data/MarketingDemoData.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/marketing/data/MarketingDemoData.xml?rev=1084551&r1=1084550&r2=1084551&view=diff ============================================================================== --- ofbiz/trunk/applications/marketing/data/MarketingDemoData.xml (original) +++ ofbiz/trunk/applications/marketing/data/MarketingDemoData.xml Wed Mar 23 11:51:33 2011 @@ -18,5 +18,5 @@ specific language governing permissions under the License. --> <entity-engine-xml> - <SeleniumTestSuitePath testSuiteId="COMMOPP_TESTSUITE" testSuiteName="commeventopportunity_testsuite" testSuitePath="applications/marketing/testdef/CommEventCreateOpportunity_testsuite.xml" description="test suite for create opportunity from communications event"/> + <SeleniumTestSuitePath testSuiteId="COMMOPP_TESTSUITE" testSuiteName="commeventopportunity_testsuite" testSuiteType="XML" testSuitePath="applications/marketing/testdef/CommEventCreateOpportunity_testsuite.xml" description="test suite for create opportunity from communications event"/> </entity-engine-xml> Modified: ofbiz/trunk/framework/example/data/ExampleDemoData.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/example/data/ExampleDemoData.xml?rev=1084551&r1=1084550&r2=1084551&view=diff ============================================================================== --- ofbiz/trunk/framework/example/data/ExampleDemoData.xml (original) +++ ofbiz/trunk/framework/example/data/ExampleDemoData.xml Wed Mar 23 11:51:33 2011 @@ -65,5 +65,5 @@ under the License. <Example exampleId="EX12" exampleName="Example 12" exampleTypeId="INSPIRED" statusId="EXST_IN_DESIGN"/> <!-- example test suite --> - <SeleniumTestSuitePath testSuiteId="EXAMPLE_TESTSUITE" testSuiteName="example_testsuite" testSuitePath="framework/testtools/testdef/seleniumxml/example/example_testsuite.xml" description="test suite for example component"/> + <SeleniumTestSuitePath testSuiteId="EXAMPLE_TESTSUITE" testSuiteName="example_testsuite" testSuiteType="XML" testSuitePath="framework/testtools/testdef/seleniumxml/example/example_testsuite.xml" description="test suite for example component"/> </entity-engine-xml> Modified: ofbiz/trunk/framework/testtools/entitydef/entitymodel.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/testtools/entitydef/entitymodel.xml?rev=1084551&r1=1084550&r2=1084551&view=diff ============================================================================== --- ofbiz/trunk/framework/testtools/entitydef/entitymodel.xml (original) +++ ofbiz/trunk/framework/testtools/entitydef/entitymodel.xml Wed Mar 23 11:51:33 2011 @@ -31,10 +31,11 @@ package-name="org.ofbiz.selenium.test" default-resource-name="ExampleEntityLabels" title="Selenium Test suite file"> - <field name="testSuiteId" type="id-ne"></field> - <field name="testSuiteName" type="name"></field> - <field name="testSuitePath" type="description"></field> - <field name="description" type="very-long"></field> + <field name="testSuiteId" type="id-ne"/> + <field name="testSuiteName" type="name"/> + <field name="testSuiteType" type="id"/> + <field name="testSuitePath" type="description"/> + <field name="description" type="very-long"/> <prim-key field="testSuiteId"/> </entity> </entitymodel> |
Free forum by Nabble | Edit this page |