aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/data/properties/valuePropertyWithGetter.kt2
-rw-r--r--test/data/properties/variablePropertyWithAccessors.kt5
-rw-r--r--test/src/model/ClassTest.kt (renamed from test/src/ClassTest.kt)0
-rw-r--r--test/src/model/FunctionTest.kt (renamed from test/src/FunctionTest.kt)0
-rw-r--r--test/src/model/PackageTest.kt (renamed from test/src/PackageTest.kt)0
-rw-r--r--test/src/model/PropertyTest.kt (renamed from test/src/PropertyTest.kt)0
6 files changed, 4 insertions, 3 deletions
diff --git a/test/data/properties/valuePropertyWithGetter.kt b/test/data/properties/valuePropertyWithGetter.kt
index 52c3534a..64d3848c 100644
--- a/test/data/properties/valuePropertyWithGetter.kt
+++ b/test/data/properties/valuePropertyWithGetter.kt
@@ -1,2 +1,2 @@
-val property
+val property: String
get() = "test" \ No newline at end of file
diff --git a/test/data/properties/variablePropertyWithAccessors.kt b/test/data/properties/variablePropertyWithAccessors.kt
index 87c1be38..152fb7d0 100644
--- a/test/data/properties/variablePropertyWithAccessors.kt
+++ b/test/data/properties/variablePropertyWithAccessors.kt
@@ -1,3 +1,4 @@
-var property
+var property: String
get() = "test"
- set(value) {} \ No newline at end of file
+ set(value) {
+ } \ No newline at end of file
diff --git a/test/src/ClassTest.kt b/test/src/model/ClassTest.kt
index 708a1798..708a1798 100644
--- a/test/src/ClassTest.kt
+++ b/test/src/model/ClassTest.kt
diff --git a/test/src/FunctionTest.kt b/test/src/model/FunctionTest.kt
index 90b937de..90b937de 100644
--- a/test/src/FunctionTest.kt
+++ b/test/src/model/FunctionTest.kt
diff --git a/test/src/PackageTest.kt b/test/src/model/PackageTest.kt
index 7b376012..7b376012 100644
--- a/test/src/PackageTest.kt
+++ b/test/src/model/PackageTest.kt
diff --git a/test/src/PropertyTest.kt b/test/src/model/PropertyTest.kt
index 1d30f2ce..1d30f2ce 100644
--- a/test/src/PropertyTest.kt
+++ b/test/src/model/PropertyTest.kt