Skip to content

Commit 1f00672

Browse files
author
lobosco
committed
added first failing test
1 parent 984f06e commit 1f00672

2 files changed

Lines changed: 11 additions & 6 deletions

File tree

app/build.gradle

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,6 @@ android {
1616
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
1717
}
1818
}
19-
20-
sourceSets {
21-
test {
22-
java.srcDirs = ['test/java']
23-
}
24-
}
2519
}
2620

2721
dependencies {
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import junit.framework.Assert;
2+
3+
import org.junit.Test;
4+
5+
public class FirstTest{
6+
7+
@Test
8+
public void test(){
9+
Assert.fail("not implemented");
10+
}
11+
}

0 commit comments

Comments
 (0)