added test

This commit is contained in:
Sandy Brownlee 2022-09-08 17:57:48 +01:00
parent e8780a5b11
commit 07b0d85bdf
2 changed files with 22 additions and 2 deletions

View File

@ -3,10 +3,16 @@ apply plugin: 'application'
sourceCompatibility = 11
repositories {
mavenCentral()
}
dependencies {
implementation project(':Triangle.AbstractMachine')
implementation project(':Solutions.Triangle.AbstractMachine')
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
}
application {
mainClass = 'Triangle.Compiler'
}
}

View File

@ -0,0 +1,14 @@
package triangle.syntacticAnalyser;
import static org.junit.Assert.*;
import org.junit.Test;
public class TestScanner {
@Test
public void test() {
fail("Not yet implemented");
}
}