From dafa895f8c683973cc6050327fb01729fc53f467 Mon Sep 17 00:00:00 2001 From: Kamil Doległo Date: Tue, 8 Sep 2020 00:13:55 +0200 Subject: Add integration test for linking between projects --- .../second/src/main/kotlin/bar/SecondClass.kt | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 integration-tests/gradle/projects/it-multimodule-1/second/src/main/kotlin/bar/SecondClass.kt (limited to 'integration-tests/gradle/projects/it-multimodule-1/second/src/main/kotlin/bar') diff --git a/integration-tests/gradle/projects/it-multimodule-1/second/src/main/kotlin/bar/SecondClass.kt b/integration-tests/gradle/projects/it-multimodule-1/second/src/main/kotlin/bar/SecondClass.kt new file mode 100644 index 00000000..6a0c935e --- /dev/null +++ b/integration-tests/gradle/projects/it-multimodule-1/second/src/main/kotlin/bar/SecondClass.kt @@ -0,0 +1,21 @@ +package bar +/** + * Second class in second module description [foo.FirstClass] + * @author John Doe + * @version 0.1.3 + * @param name Name description text text text. +*/ +class SecondClass(val name: String) { + val firstProperty = "propertystring" + /** + * Second property in second module description [foo.FirstSubclass] + */ + var secondProperty: String = "" + set(value) { + println("Second property not set") + } + + init { + println("InitializerBlock") + } +} -- cgit