Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register

Changeset 3613

Show
Ignore:
Timestamp:
03/17/08 18:33:28 (10 months ago)
Author:
tmdugan
Message:

-- chica

* updated atd jar
* moved test cases that don't use in-memory database into another package since they were interferring with the in-memory database test cases
* added a test case to test the new provider datasource

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs-modules/chica/.classpath

    r3592 r3613  
    6060        <classpathentry kind="lib" path="/atd/dist"/> 
    6161        <classpathentry kind="lib" path="/dss/dist"/> 
    62         <classpathentry kind="lib" path="lib-common/dss-2.09.jar"/> 
    63         <classpathentry kind="lib" path="lib-common/atd-1.19.jar"/> 
     62        <classpathentry kind="lib" path="lib-common/dss-2.09.jar" sourcepath="/dss/src"/> 
    6463        <classpathentry kind="lib" path="lib-common/spring-framework/spring-2.5.1.jar"/> 
    6564        <classpathentry kind="lib" path="lib-common/spring-framework/spring-test.jar"/> 
    6665        <classpathentry kind="lib" path="lib-common/spring-framework/spring-webmvc.jar"/> 
    67         <classpathentry kind="lib" path="lib-common/openmrs-api-1.2.11.3590.jar"/> 
     66        <classpathentry kind="lib" path="lib-common/openmrs-api-1.2.11.3590.jar" sourcepath="/openmrs_logic/src"/> 
    6867        <classpathentry kind="lib" path="lib-common/tests-openmrs-api-1.2.11.3590.jar"/> 
    6968        <classpathentry kind="lib" path="lib-common/web-openmrs-api-1.2.11.3590.jar"/> 
     69        <classpathentry kind="lib" path="lib-common/atd-1.20.jar"/> 
    7070        <classpathentry kind="output" path="bin"/> 
    7171</classpath> 
  • openmrs-modules/chica/test/org/openmrs/module/chica/test/nonInMemoryTests/DBUnitXMLToDatabase.java

    r3603 r3613  
    22 *  
    33 */ 
    4 package org.openmrs.module.chica.test
     4package org.openmrs.module.chica.nonInMemoryTests
    55 
    66import java.io.FileOutputStream; 
    77 
     8import org.openmrs.module.chica.test.TestUtil; 
    89import org.openmrs.test.BaseModuleContextSensitiveTest; 
    910 
     
    2728                String[] tableNames = new String[1]; 
    2829                tableNames[0] = "dss_rule"; 
    29                 //TestUtil.dumpTable(tableNames, getConnection(), System.out); 
     30                TestUtil.dumpTable(tableNames, getConnection(), System.out); 
    3031        } 
    3132 
  • openmrs-modules/chica/test/org/openmrs/module/chica/test/nonInMemoryTests/TestMergeXMLToTable.java

    r3603 r3613  
    1 package org.openmrs.module.chica.test
     1package org.openmrs.module.chica.nonInMemoryTests
    22 
    33import java.io.OutputStream;