Skip to content

Commit c210d61

Browse files
committed
Add test project
1 parent 842a4ce commit c210d61

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

build.gradle.kts

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
group = "com.soarex16"
1+
val groupId: String by project
2+
val kotlinVersion: String by project
3+
val jvmTargetVersion: String by project
4+
val arrowMetaVersion: String by project
5+
6+
group = groupId
27
version = "1.0-SNAPSHOT"
38

49
allprojects {

settings.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
rootProject.name = "kaliper"
22
include("plugin")
3+
include("test-project")
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import org.junit.jupiter.api.Test
2+
3+
data class TestClass(val a: String, val b: Int)
4+
5+
class ShallowSizeTest {
6+
@Test
7+
fun `source files are generated`() {
8+
9+
}
10+
11+
@Test
12+
fun `shallowSize method exists`() {
13+
}
14+
}

0 commit comments

Comments
 (0)