Changeset 1606 for trunk/autoquest-plugin-uml-test/src
- Timestamp:
- 07/11/14 16:17:31 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-uml-test/src/test/java/de/ugoe/cs/autoquest/plugin/uml/UMLUtilsTest.java
r1603 r1606 59 59 public class UMLUtilsTest { 60 60 61 private final static String OUTPUT_DIR = "target/tmp/ outputs/";61 private final static String OUTPUT_DIR = "target/tmp/test-outputs/"; 62 62 63 63 /** … … 159 159 resource.getContents().add(model); 160 160 FileOutputStream fos; 161 fos = new FileOutputStream(filename); 161 File file = new File(filename); 162 file.getParentFile().mkdirs(); 163 fos = new FileOutputStream(file); 162 164 resource.save(fos, null); 163 165 }
Note: See TracChangeset
for help on using the changeset viewer.