-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Creating driver program for incremental testing
- Loading branch information
Showing
191 changed files
with
1,880 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Build: Gradle | ||
Primary language: Kotlin | ||
Testing Framework: Spek2 | ||
Documentation: Dokka | ||
|
||
To run Spek2 test cases: ./gradlew test | ||
|
||
App.kt is the driver program |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/*TODO: Refactor to Kotlin DSL */ | ||
|
||
plugins { | ||
id 'org.jetbrains.kotlin.jvm' version '1.3.50' | ||
id 'org.jetbrains.dokka' version '0.10.0' | ||
} | ||
|
||
group 'com.ohiohealth.kata' | ||
version '1.0-SNAPSHOT' | ||
|
||
repositories { | ||
mavenCentral() | ||
jcenter() | ||
} | ||
|
||
dependencies { | ||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" | ||
testImplementation "org.spekframework.spek2:spek-dsl-jvm:2.0.7" | ||
testImplementation "org.jetbrains.kotlin:kotlin-test" | ||
testRuntimeOnly "org.spekframework.spek2:spek-runner-junit5:2.0.7" | ||
testRuntimeOnly "org.jetbrains.kotlin:kotlin-reflect:1.3.5" | ||
dokkaRuntime "org.jetbrains.dokka:dokka-fatjar:0.10.0" | ||
} | ||
|
||
compileKotlin { | ||
kotlinOptions.jvmTarget = "1.8" | ||
} | ||
compileTestKotlin { | ||
kotlinOptions.jvmTarget = "1.8" | ||
} | ||
|
||
test { | ||
useJUnitPlatform { | ||
includeEngines 'spek2' | ||
} | ||
} | ||
|
||
dokka { | ||
outputFormat = 'html' | ||
outputDirectory = "$buildDir/javadoc" | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.31 KB
build/classes/kotlin/test/org/spekframework/spek2/BabysitterServiceFeature$1$1$1$1.class
Binary file not shown.
Binary file added
BIN
+2.17 KB
build/classes/kotlin/test/org/spekframework/spek2/BabysitterServiceFeature$1$1$1$2.class
Binary file not shown.
Binary file added
BIN
+2.31 KB
build/classes/kotlin/test/org/spekframework/spek2/BabysitterServiceFeature$1$1$1$3.class
Binary file not shown.
Binary file added
BIN
+2.17 KB
build/classes/kotlin/test/org/spekframework/spek2/BabysitterServiceFeature$1$1$1$4.class
Binary file not shown.
Binary file added
BIN
+2.31 KB
build/classes/kotlin/test/org/spekframework/spek2/BabysitterServiceFeature$1$1$1$5.class
Binary file not shown.
Binary file added
BIN
+2.17 KB
build/classes/kotlin/test/org/spekframework/spek2/BabysitterServiceFeature$1$1$1$6.class
Binary file not shown.
Binary file added
BIN
+2.31 KB
build/classes/kotlin/test/org/spekframework/spek2/BabysitterServiceFeature$1$1$1$7.class
Binary file not shown.
Binary file added
BIN
+2.17 KB
build/classes/kotlin/test/org/spekframework/spek2/BabysitterServiceFeature$1$1$1$8.class
Binary file not shown.
Binary file added
BIN
+3.42 KB
build/classes/kotlin/test/org/spekframework/spek2/BabysitterServiceFeature$1$1$1.class
Binary file not shown.
Binary file added
BIN
+2.31 KB
build/classes/kotlin/test/org/spekframework/spek2/BabysitterServiceFeature$1$1$2$1.class
Binary file not shown.
Binary file added
BIN
+2.17 KB
build/classes/kotlin/test/org/spekframework/spek2/BabysitterServiceFeature$1$1$2$2.class
Binary file not shown.
Binary file added
BIN
+2.12 KB
build/classes/kotlin/test/org/spekframework/spek2/BabysitterServiceFeature$1$1$2$3.class
Binary file not shown.
Binary file added
BIN
+1.97 KB
build/classes/kotlin/test/org/spekframework/spek2/BabysitterServiceFeature$1$1$2$4.class
Binary file not shown.
Binary file added
BIN
+3.52 KB
build/classes/kotlin/test/org/spekframework/spek2/BabysitterServiceFeature$1$1$2.class
Binary file not shown.
Binary file added
BIN
+2.03 KB
build/classes/kotlin/test/org/spekframework/spek2/BabysitterServiceFeature$1$1.class
Binary file not shown.
Binary file added
BIN
+1.83 KB
build/classes/kotlin/test/org/spekframework/spek2/BabysitterServiceFeature$1.class
Binary file not shown.
Binary file added
BIN
+1.51 KB
build/classes/kotlin/test/org/spekframework/spek2/BabysitterServiceFeature.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<HTML> | ||
<HEAD> | ||
<meta charset="UTF-8"> | ||
<title>alltypes - babysitter</title> | ||
<link rel="stylesheet" href="../style.css"> | ||
</HEAD> | ||
<BODY> | ||
<h3>All Types</h3> | ||
<table> | ||
<tbody> | ||
</tbody> | ||
</table> | ||
</BODY> | ||
</HTML> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<HTML> | ||
<HEAD> | ||
<meta charset="UTF-8"> | ||
<title>Module Contents</title> | ||
<link rel="stylesheet" href="../style.css"> | ||
</HEAD> | ||
<BODY> | ||
<a href="C:\Users\Zero\IdeaProjects\babysitter\build\javadoc\babysitter\index"><a href="./index"><span class="identifier">babysitter</span></a></a><br/> | ||
<ul> | ||
<HTML> | ||
<HEAD> | ||
<meta charset="UTF-8"> | ||
<title>Module Contents</title> | ||
<link rel="stylesheet" href="../style.css"> | ||
</HEAD> | ||
<BODY> | ||
<a href="C:\Users\Zero\IdeaProjects\babysitter\build\javadoc\babysitter\index"><a href="alltypes.html"><span class="identifier">alltypes</span></a></a><br/> | ||
</BODY> | ||
</HTML> | ||
</ul> | ||
</BODY> | ||
</HTML> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<HTML> | ||
<HEAD> | ||
<meta charset="UTF-8"> | ||
<title>babysitter</title> | ||
<link rel="stylesheet" href="../style.css"> | ||
</HEAD> | ||
<BODY> | ||
<a href="./index.html">babysitter</a><br/> | ||
<br/> | ||
<h3>Index</h3> | ||
<a href="alltypes.html">All Types</a> | ||
</BODY> | ||
</HTML> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
$dokka.format:html | ||
$dokka.linkExtension:html | ||
|
||
|
Oops, something went wrong.