1 48 49 package net.sf.antcontrib.platform; 50 51 import org.apache.tools.ant.BuildFileTest; 52 53 58 public class OsFamilyTest extends BuildFileTest { 59 60 public OsFamilyTest(String name) { 61 super(name); 62 } 63 64 public void setUp() { 65 configureProject("test/resources/platform/osfamily.xml"); 66 } 67 68 public void testConsistency() { 69 executeTarget("consistency"); 70 assertPropertyEquals("consistent", "true"); 71 } 72 73 public void testMissingProperty() { 74 expectSpecificBuildException("missingProperty", "no attribute", 75 "The attribute 'property' is required " 76 + "for the OsFamily task."); 77 } 78 79 } 80 | Popular Tags |