Fix failing tests, copy testData

Some tests were using files that others called blackBoxFile() on. Since
those files are now moved to box/, copy them back to make the tests pass
This commit is contained in:
Alexander Udalov
2013-01-25 16:47:09 +04:00
committed by Alexander Udalov
parent 7ce62a5b64
commit 5313cf3bf0
5 changed files with 46 additions and 1 deletions
@@ -0,0 +1,10 @@
fun box() = IssueState.DEFAULT.ToString() + IssueState.FIXED.ToString()
enum class IssueState {
DEFAULT
FIXED {
override fun ToString() = "K"
}
open fun ToString() : String = "O"
}
+6
View File
@@ -0,0 +1,6 @@
enum class State {
O
K
}
fun box() = "${State.O.name()}${State.K.name()}"
+12
View File
@@ -0,0 +1,12 @@
enum class Season {
WINTER
SPRING
SUMMER
AUTUMN
}
fun foo(): Season = Season.SPRING
fun box() =
if (foo() == Season.SPRING) "OK"
else "fail"