Adding check method to stdlib as detailed in KT-1530
This commit is contained in:
@@ -36,14 +36,66 @@ class PreconditionsTest() : TestCase() {
|
||||
}
|
||||
}
|
||||
|
||||
// // Not sure why the assert method is not being resolved.
|
||||
// fun ignorePassingAssert() {
|
||||
// assert(true)
|
||||
// TODO: uncomment when KT-1540 is resolved.
|
||||
// fun testPassingCheck() {
|
||||
// check1(true)
|
||||
// }
|
||||
//
|
||||
// fun ignoreFailingAssert() {
|
||||
// failsWith<AssertionError> {
|
||||
// assert(false)
|
||||
// fun testFailingCheck() {
|
||||
// val error = fails {
|
||||
// check1(false)
|
||||
// }
|
||||
// if(error is IllegalStateException) {
|
||||
// assertNull(error.getMessage())
|
||||
// } else {
|
||||
// fail("Invalid exception type: "+error)
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// fun testPassingCheckWithMessage() {
|
||||
// check2(true, "Hello")
|
||||
// }
|
||||
//
|
||||
// fun testFailingCheckWithMessage() {
|
||||
// val error = fails {
|
||||
// check2(false, "Hello")
|
||||
// }
|
||||
// if(error is IllegalStateException) {
|
||||
// assertEquals("Hello", error.getMessage())
|
||||
// } else {
|
||||
// fail("Invalid exception type: "+error)
|
||||
// }
|
||||
// }
|
||||
|
||||
|
||||
// TODO: uncomment when KT-1540 is resolved.
|
||||
// fun testPassingAssert() {
|
||||
// assert1(true)
|
||||
// }
|
||||
//
|
||||
// fun testFailingAssert() {
|
||||
// val error = fails {
|
||||
// assert1(false)
|
||||
// }
|
||||
// if(error is IllegalStateException) {
|
||||
// assertNull(error.getMessage())
|
||||
// } else {
|
||||
// fail("Invalid exception type: "+error)
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// fun testPassingAssertWithMessage() {
|
||||
// assert2(true, "Hello")
|
||||
// }
|
||||
//
|
||||
// fun testFailingAssertWithMessage() {
|
||||
// val error = fails {
|
||||
// assert2(false, "Hello")
|
||||
// }
|
||||
// if(error is IllegalStateException) {
|
||||
// assertEquals("Hello", error.getMessage())
|
||||
// } else {
|
||||
// fail("Invalid exception type: "+error)
|
||||
// }
|
||||
// }
|
||||
}
|
||||
Reference in New Issue
Block a user