1 19 package org.netbeans.modules.lexer.editorbridge.calc.lang; 20 21 import org.netbeans.junit.NbTestCase; 22 import org.netbeans.lib.lexer.test.LexerTestUtilities; 23 24 29 public class CalcTokenDumpTest extends NbTestCase { 30 31 public CalcTokenDumpTest(String testName) { 32 super(testName); 33 } 34 35 protected void setUp() throws java.lang.Exception { 36 LexerTestUtilities.setTesting(true); 38 } 39 40 protected void tearDown() throws java.lang.Exception { 41 } 42 43 public void test() throws Exception { 44 LexerTestUtilities.checkTokenDump(this, "testfiles/testInput.calc.txt", 45 CalcTokenId.language()); 46 } 47 48 } 49 | Popular Tags |