diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-10-28 12:15:40 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-10-29 11:57:22 +0100 |
commit | 47ccfb0937fa70d727a540d3d9a0bbbc6f1bfc6d (patch) | |
tree | 51cff592a4c5d63f69e2a4328fdf9d8bce444025 /test/src/model/PropertyTest.kt | |
parent | cdeca8f3ba28c1b974ae81ef1ae1e80b007b1111 (diff) | |
download | dokka-47ccfb0937fa70d727a540d3d9a0bbbc6f1bfc6d.tar.gz dokka-47ccfb0937fa70d727a540d3d9a0bbbc6f1bfc6d.tar.bz2 dokka-47ccfb0937fa70d727a540d3d9a0bbbc6f1bfc6d.zip |
loading the JDK and the Kotlin runtime in tests is now optional
Diffstat (limited to 'test/src/model/PropertyTest.kt')
-rw-r--r-- | test/src/model/PropertyTest.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/model/PropertyTest.kt b/test/src/model/PropertyTest.kt index 0da510ed..310bc0ae 100644 --- a/test/src/model/PropertyTest.kt +++ b/test/src/model/PropertyTest.kt @@ -65,7 +65,7 @@ public class PropertyTest { } @Test fun annotatedProperty() { - verifyModel("test/data/properties/annotatedProperty.kt") { model -> + verifyModel("test/data/properties/annotatedProperty.kt", withKotlinRuntime = true) { model -> with(model.members.single().members.single()) { assertEquals(1, annotations.count()) with(annotations[0]) { |