Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register

Changeset 3353

Show
Ignore:
Timestamp:
02/12/08 14:11:20 (1 year ago)
Author:
tmdugan
Message:

-- chica

* fixed hard coded file paths

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs-modules/chica/test/org/openmrs/module/chica/test/DBUnitXMLToDatabase.java

    r3126 r3353  
    2323        public void testDBUnitXML() throws Exception 
    2424        { 
    25                 //String dtdFilename="C:/Documents and Settings/tmdugan/workspace/chica/test/dbunitFiles/tableSetupDTD.dtd"; 
     25                //String dtdFilename="test/dbunitFiles/tableSetupDTD.dtd"; 
    2626                //TestUtil.createDTDFile(getConnection(),dtdFilename); 
    2727                String[] tableNames = new String[1]; 
  • openmrs-modules/chica/test/org/openmrs/module/chica/test/TestXMLDatasource.java

    r3305 r3353  
    4646                LogicService logicService = Context.getLogicService(); 
    4747                TeleformExportXMLDatasource datasource = null; 
    48                 String filename = "C:\\Documents and Settings\\tmdugan\\workspace\\chica\\test\\testFiles\\export_PSF.xml"; 
     48                String filename = "test\\testFiles\\export_PSF.xml"; 
    4949                Patient patient = Context.getPatientService().getPatient(9349); 
    5050                AdministrationService adminService = Context.getAdministrationService(); 
     
    6565                ruleList.add(rule); 
    6666                String stringResult = dssService.runRulesAsString(patient,ruleList); 
     67                System.out.println(stringResult); 
    6768        } 
    6869}