Skip to content

Commit 4eb7e9e

Browse files
committed
Setup benchmarks module
1 parent 5738cfb commit 4eb7e9e

File tree

4 files changed

+32
-1
lines changed

4 files changed

+32
-1
lines changed

benchmarks/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
configureAllRetroLambda()
3+
4+
dependencies {
5+
testCompile dependencyJunit
6+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package fj.data.dummy;
2+
3+
/**
4+
* Created by MarkPerry on 5 Feb 16.
5+
*/
6+
public class DummyClass {
7+
8+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package fj.data.dummy;
2+
3+
import org.junit.Ignore;
4+
import org.junit.Test;
5+
6+
/**
7+
* Created by MarkPerry on 5 Feb 16.
8+
*/
9+
public class DummyTest {
10+
11+
@Test
12+
@Ignore
13+
public void test1() {
14+
15+
}
16+
17+
}

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

22
rootProject.name = "functionaljava"
33

4-
include "core", "demo", "consume", "java8", "quickcheck", "props-core", "props-core-scalacheck", "java-core"
4+
include "core", "demo", "consume", "java8", "quickcheck", "props-core", "props-core-scalacheck", "java-core", "benchmarks"
55

0 commit comments

Comments
 (0)