added test
This commit is contained in:
parent
e8780a5b11
commit
07b0d85bdf
@ -3,8 +3,14 @@ apply plugin: 'application'
|
|||||||
|
|
||||||
sourceCompatibility = 11
|
sourceCompatibility = 11
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':Triangle.AbstractMachine')
|
implementation project(':Solutions.Triangle.AbstractMachine')
|
||||||
|
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
application {
|
application {
|
||||||
|
@ -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");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Reference in New Issue
Block a user