fix tests
This commit is contained in:
parent
af8ab62604
commit
d220d172a7
1 changed files with 5 additions and 5 deletions
|
@ -41,7 +41,7 @@ internal class EntryKtTest {
|
||||||
@Test
|
@Test
|
||||||
fun test_without_method_argument() {
|
fun test_without_method_argument() {
|
||||||
// when
|
// when
|
||||||
org.domaindrivenarchitecture.provs.framework.core.entry.main("org.domaindrivenarchitecture.provs.core.entry.EntryTestKt")
|
org.domaindrivenarchitecture.provs.framework.core.entry.main("org.domaindrivenarchitecture.provs.framework.core.entry.EntryTestKt")
|
||||||
|
|
||||||
// then
|
// then
|
||||||
assertEquals("main is fun \n", outContent.toString())
|
assertEquals("main is fun \n", outContent.toString())
|
||||||
|
@ -51,7 +51,7 @@ internal class EntryKtTest {
|
||||||
fun test_method_main_without_args() {
|
fun test_method_main_without_args() {
|
||||||
// when
|
// when
|
||||||
org.domaindrivenarchitecture.provs.framework.core.entry.main(
|
org.domaindrivenarchitecture.provs.framework.core.entry.main(
|
||||||
"org.domaindrivenarchitecture.provs.core.entry.EntryTestKt",
|
"org.domaindrivenarchitecture.provs.framework.core.entry.EntryTestKt",
|
||||||
"main"
|
"main"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ internal class EntryKtTest {
|
||||||
fun test_named_method_without_args() {
|
fun test_named_method_without_args() {
|
||||||
// when
|
// when
|
||||||
org.domaindrivenarchitecture.provs.framework.core.entry.main(
|
org.domaindrivenarchitecture.provs.framework.core.entry.main(
|
||||||
"org.domaindrivenarchitecture.provs.core.entry.EntryTestKt",
|
"org.domaindrivenarchitecture.provs.framework.core.entry.EntryTestKt",
|
||||||
"testfun"
|
"testfun"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -75,7 +75,7 @@ internal class EntryKtTest {
|
||||||
fun test_method_main_with_args() {
|
fun test_method_main_with_args() {
|
||||||
// when
|
// when
|
||||||
org.domaindrivenarchitecture.provs.framework.core.entry.main(
|
org.domaindrivenarchitecture.provs.framework.core.entry.main(
|
||||||
"org.domaindrivenarchitecture.provs.core.entry.EntryTestKt",
|
"org.domaindrivenarchitecture.provs.framework.core.entry.EntryTestKt",
|
||||||
"main",
|
"main",
|
||||||
"arg1",
|
"arg1",
|
||||||
"arg2"
|
"arg2"
|
||||||
|
@ -89,7 +89,7 @@ internal class EntryKtTest {
|
||||||
fun test_named_method_with_args() {
|
fun test_named_method_with_args() {
|
||||||
// when
|
// when
|
||||||
org.domaindrivenarchitecture.provs.framework.core.entry.main(
|
org.domaindrivenarchitecture.provs.framework.core.entry.main(
|
||||||
"org.domaindrivenarchitecture.provs.core.entry.EntryTestKt",
|
"org.domaindrivenarchitecture.provs.framework.core.entry.EntryTestKt",
|
||||||
"testfun",
|
"testfun",
|
||||||
"arg1",
|
"arg1",
|
||||||
"arg2"
|
"arg2"
|
||||||
|
|
Loading…
Reference in a new issue