Initial commit

This commit is contained in:
2020-04-27 13:22:01 +02:00
commit 89ee1e1beb
69 changed files with 2806 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/* **********************************************
* Duale Hochschule Baden-Württemberg Karlsruhe
* Prof. Dr. Jörn Eisenbiegler
*
* Vorlesung Übersetzerbau
* Praxis AS-Scanner mit JFlex
* - Testsuite
*
* **********************************************
*/
package de.dhbw.compiler.jflexasscanner;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({ TestASScanner1.class, TestASScanner2.class, TestASScanner3.class, TestASScanner4.class, TestASScanner5.class })
public class TestsAll {
}