Add a reproduction of #22 to the sample project

This commit is contained in:
Brian Norman
2020-09-25 15:15:36 -05:00
parent 4c29d2dbc7
commit 820ea18ebc
4 changed files with 54 additions and 2 deletions
+1 -1
View File
@@ -57,5 +57,5 @@ kotlin {
}
configure<com.bnorm.power.PowerAssertGradleExtension> {
functions = listOf("kotlin.test.assertTrue", "kotlin.require")
functions = listOf("kotlin.assert", "kotlin.test.assertTrue", "kotlin.require")
}
@@ -0,0 +1,26 @@
/*
* Copyright (C) 2020 Brian Norman
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.bnorm.power
import kotlin.test.Test
class JsPowerAssertTest {
@Test
fun assert() {
require(Person.UNKNOWN.size == 1) { "unknown persons: ${Person.UNKNOWN}" }
}
}
@@ -21,6 +21,6 @@ import kotlin.test.Test
class JvmPowerAssertTest {
@Test
fun assert() {
assert(Person.UNKNOWN.size == 1)
assert(Person.UNKNOWN.size == 1) { "unknown persons: ${Person.UNKNOWN}" }
}
}
@@ -0,0 +1,26 @@
/*
* Copyright (C) 2020 Brian Norman
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.bnorm.power
import kotlin.test.Test
class NativePowerAssertTest {
@Test
fun assert() {
assert(Person.UNKNOWN.size == 1) { "unknown persons: ${Person.UNKNOWN}" }
}
}