1 19 20 package org.netbeans.core.windows.view.ui; 21 22 import org.netbeans.junit.NbTestCase; 23 import org.openide.util.NbBundle; 24 25 28 public class MainWindowTest extends NbTestCase { 29 30 public MainWindowTest(String testName) { 31 super(testName); 32 } 33 34 protected boolean runInEQ () { 35 return true; 36 } 37 38 protected void setUp() throws Exception { 39 } 40 41 public void testBrandingTokensExist() { 42 assertNotNull("Main window title without projects exists", 44 NbBundle.getMessage(MainWindow.class, "CTL_MainWindow_Title_No_Project")); 45 assertNotNull("Main window title without projects exists", 46 NbBundle.getMessage(MainWindow.class, "CTL_MainWindow_Title")); 47 } 48 49 } 50 | Popular Tags |