Changeset 3353
- Timestamp:
- 02/12/08 14:11:20 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs-modules/chica/test/org/openmrs/module/chica/test/DBUnitXMLToDatabase.java
r3126 r3353 23 23 public void testDBUnitXML() throws Exception 24 24 { 25 //String dtdFilename=" C:/Documents and Settings/tmdugan/workspace/chica/test/dbunitFiles/tableSetupDTD.dtd";25 //String dtdFilename="test/dbunitFiles/tableSetupDTD.dtd"; 26 26 //TestUtil.createDTDFile(getConnection(),dtdFilename); 27 27 String[] tableNames = new String[1]; openmrs-modules/chica/test/org/openmrs/module/chica/test/TestXMLDatasource.java
r3305 r3353 46 46 LogicService logicService = Context.getLogicService(); 47 47 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"; 49 49 Patient patient = Context.getPatientService().getPatient(9349); 50 50 AdministrationService adminService = Context.getAdministrationService(); … … 65 65 ruleList.add(rule); 66 66 String stringResult = dssService.runRulesAsString(patient,ruleList); 67 System.out.println(stringResult); 67 68 } 68 69 }