[teiid-commits] teiid SVN: r1342 - in trunk/test-integration/db: src and 1 other directory.

teiid-commits at lists.jboss.org teiid-commits at lists.jboss.org
Fri Sep 11 16:01:16 EDT 2009


Author: vhalbert at redhat.com
Date: 2009-09-11 16:01:16 -0400 (Fri, 11 Sep 2009)
New Revision: 1342

Added:
   trunk/test-integration/db/howto
Removed:
   trunk/test-integration/db/src/howto
Log:
Teiid 773 - organize integration test

Copied: trunk/test-integration/db/howto (from rev 1341, trunk/test-integration/db/src/howto)
===================================================================
--- trunk/test-integration/db/howto	                        (rev 0)
+++ trunk/test-integration/db/howto	2009-09-11 20:01:16 UTC (rev 1342)
@@ -0,0 +1,52 @@
+This is a howto of the following:
+
+1.	Creating unit tests that use 1 or more datasources
+2.	Setting up a datasource to be used during testing
+3.	Executing the db integration tests
+
+
+==========================================
+Creating Unit Tests
+==========================================
+
+-	Unit test should be created under db/src/test/java 
+-	See SingleSourceTransactionTest.java as an example 
+
+	NOTE:  the current tests are currently  organized by the number of datasources they require in order
+			to give some organization to the test for tracking purposes.
+			
+-	Test should extend org.teiid.transaction.test.BaseAbstractTransactionTestCase
+
+
+-	NOTE:  the following is used in a post test phase of validating the data in the datasource 
+-	when calling: this.getSource("modelname")			--- the "modelname" represents the model for which
+													you want the connection for
+													
+			INFO: to know which source this model is mapped to, find the config properties file being
+					loaded for this test (default is the default-config.properties) and look for
+					the model-to-datasource mapping(s)
+					
+					The default Transaction.vdb has 2 models:  pm1 and pm2
+
+
+==========================================
+Setting up a Datasource to be used during Testing
+==========================================
+
+-	see the readme.txt in src/main/resources/datasources regarding defining a datasource
+-	run the maven profile to execute the process to create the required tables:
+		a.  to setup all sources at one time, run:   mvn install -P setupdatasources 
+		b.	to setup a specific source, run: mvn install -P singledatasource -Ddatasource=derby
+		
+
+==========================================
+Executing the db integration tests
+==========================================
+
+The default profile in the pom.xml is set to compile and run the test.   So running:  mvn clean install
+will compile and run the test.  
+It does not run and setup a datasource.   See above "Setting up a Datasource to be used during Testing".
+
+
+
+ 
\ No newline at end of file

Deleted: trunk/test-integration/db/src/howto
===================================================================
--- trunk/test-integration/db/src/howto	2009-09-11 19:53:36 UTC (rev 1341)
+++ trunk/test-integration/db/src/howto	2009-09-11 20:01:16 UTC (rev 1342)
@@ -1,52 +0,0 @@
-This is a howto of the following:
-
-1.	Creating unit tests that use 1 or more datasources
-2.	Setting up a datasource to be used during testing
-3.	Executing the db integration tests
-
-
-==========================================
-Creating Unit Tests
-==========================================
-
--	Unit test should be created under db/src/test/java 
--	See SingleSourceTransactionTest.java as an example 
-
-	NOTE:  the current tests are currently  organized by the number of datasources they require in order
-			to give some organization to the test for tracking purposes.
-			
--	Test should extend org.teiid.transaction.test.BaseAbstractTransactionTestCase
-
-
--	NOTE:  the following is used in a post test phase of validating the data in the datasource 
--	when calling: this.getSource("modelname")			--- the "modelname" represents the model for which
-													you want the connection for
-													
-			INFO: to know which source this model is mapped to, find the config properties file being
-					loaded for this test (default is the default-config.properties) and look for
-					the model-to-datasource mapping(s)
-					
-					The default Transaction.vdb has 2 models:  pm1 and pm2
-
-
-==========================================
-Setting up a Datasource to be used during Testing
-==========================================
-
--	see the readme.txt in src/main/resources/datasources regarding defining a datasource
--	run the maven profile to execute the process to create the required tables:
-		a.  to setup all sources at one time, run:   mvn install -P setupdatasources 
-		b.	to setup a specific source, run: mvn install -P singledatasource -Ddatasource=derby
-		
-
-==========================================
-Executing the db integration tests
-==========================================
-
-The default profile in the pom.xml is set to compile and run the test.   So running:  mvn clean install
-will compile and run the test.  
-It does not run and setup a datasource.   See above "Setting up a Datasource to be used during Testing".
-
-
-
- 
\ No newline at end of file



More information about the teiid-commits mailing list