[13 - String Templates] Add "CC-Praxis-Antlr X Uebersetzer-Leer"

This commit is contained in:
2020-06-10 10:20:02 +02:00
parent bfb63b182d
commit 76597fb4a9
41 changed files with 7720 additions and 10 deletions

View File

@@ -0,0 +1,21 @@
/* **********************************************
* Duale Hochschule Baden-Württemberg Karlsruhe
* Prof. Dr. Jörn Eisenbiegler
*
* Vorlesung Übersetzerbau
* Praxis ANTLR-Parser für X
* - Testsuite für Antlr-Parser
*
* **********************************************
*/
package de.dhbw.compiler.antlrxcompiler.test;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({ TestAntlrXScanner1.class, TestAntlrXScanner2.class, TestAntlrXScanner3.class, TestAntlrXParser1.class, TestAntlrXParser2.class })
public class TestAntlrXParser {
}