1 19 20 package org.netbeans.modules.ant.freeform; 21 22 import org.netbeans.api.project.ProjectInformation; 23 import org.netbeans.api.project.ProjectUtils; 24 25 29 34 public class FreeformProjectTest extends TestBase { 35 36 public FreeformProjectTest(String name) { 37 super(name); 38 } 39 40 public void testProjectInformation() throws Exception { 41 ProjectInformation info = ProjectUtils.getInformation(simple); 42 assertEquals("correct name", "Simple_Freeform_Project", info.getName()); 43 assertEquals("same display name", "Simple Freeform Project", info.getDisplayName()); 44 } 46 47 } 48 | Popular Tags |