diff options
author | Kamil Doległo <kamilok1965@interia.pl> | 2020-01-17 15:01:18 +0100 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-01-20 08:34:33 +0100 |
commit | 4417ab37e0e16663bde81efd5207c0e1929b881a (patch) | |
tree | 883e76b7a33d8ece6c8a8c8756be61c5ab5d6c88 /runners/gradle-integration-tests/testData/multiProjectSingleOut/subA | |
parent | 0e125fce5c09b1a0a8413d2e6be443e29d4ebebe (diff) | |
download | dokka-4417ab37e0e16663bde81efd5207c0e1929b881a.tar.gz dokka-4417ab37e0e16663bde81efd5207c0e1929b881a.tar.bz2 dokka-4417ab37e0e16663bde81efd5207c0e1929b881a.zip |
Move the Gradle integration tests back to `:runners`
Diffstat (limited to 'runners/gradle-integration-tests/testData/multiProjectSingleOut/subA')
-rw-r--r-- | runners/gradle-integration-tests/testData/multiProjectSingleOut/subA/build.gradle | 6 | ||||
-rw-r--r-- | runners/gradle-integration-tests/testData/multiProjectSingleOut/subA/src/main/kotlin/module.kt | 31 |
2 files changed, 37 insertions, 0 deletions
diff --git a/runners/gradle-integration-tests/testData/multiProjectSingleOut/subA/build.gradle b/runners/gradle-integration-tests/testData/multiProjectSingleOut/subA/build.gradle new file mode 100644 index 00000000..0600411e --- /dev/null +++ b/runners/gradle-integration-tests/testData/multiProjectSingleOut/subA/build.gradle @@ -0,0 +1,6 @@ +apply plugin: 'kotlin' + +dependencies { + compile group: 'org.jetbrains.kotlin', name: 'kotlin-runtime', version: test_kotlin_version + compile group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: test_kotlin_version +} diff --git a/runners/gradle-integration-tests/testData/multiProjectSingleOut/subA/src/main/kotlin/module.kt b/runners/gradle-integration-tests/testData/multiProjectSingleOut/subA/src/main/kotlin/module.kt new file mode 100644 index 00000000..126d7f3e --- /dev/null +++ b/runners/gradle-integration-tests/testData/multiProjectSingleOut/subA/src/main/kotlin/module.kt @@ -0,0 +1,31 @@ +package s1 + +/** + * Coolest one + */ +fun someCoolThing(s: String) = s.repeat(2) + +/** + * Just a class + */ +class MyClass { + /** + * Ultimate answer to all questions + */ + fun otherworks(): Int = 42 +} + +/** + * Just a SUPER class + */ +open class Super { + /** + * Same as [MyClass.otherworks] + */ + fun foo(i: Int = 21) = i * 2 + + /** + * magic + */ + open fun bar() = foo() +}
\ No newline at end of file |