aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle-integration-tests/testData/basic
diff options
context:
space:
mode:
Diffstat (limited to 'integration-tests/gradle-integration-tests/testData/basic')
-rw-r--r--integration-tests/gradle-integration-tests/testData/basic/build.gradle46
-rw-r--r--integration-tests/gradle-integration-tests/testData/basic/classDir/p1/MyBinaryClass.classbin670 -> 0 bytes
-rw-r--r--integration-tests/gradle-integration-tests/testData/basic/fileTree.txt33
-rw-r--r--integration-tests/gradle-integration-tests/testData/basic/settings.gradle11
-rw-r--r--integration-tests/gradle-integration-tests/testData/basic/src/main/kotlin/demo/HelloWorld.kt45
5 files changed, 0 insertions, 135 deletions
diff --git a/integration-tests/gradle-integration-tests/testData/basic/build.gradle b/integration-tests/gradle-integration-tests/testData/basic/build.gradle
deleted file mode 100644
index 18c617b7..00000000
--- a/integration-tests/gradle-integration-tests/testData/basic/build.gradle
+++ /dev/null
@@ -1,46 +0,0 @@
-buildscript {
- repositories {
- mavenCentral()
- jcenter()
- mavenLocal()
- maven { url "https://dl.bintray.com/kotlin/kotlin-eap" }
- maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
- }
- dependencies {
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$test_kotlin_version"
- }
-}
-
-plugins {
- id 'org.jetbrains.dokka'
-}
-
-apply plugin: 'kotlin'
-apply plugin: 'org.jetbrains.dokka'
-
-repositories {
- mavenCentral()
- jcenter()
- maven {
- url "https://dl.bintray.com/kotlin/kotlin-eap"
- }
- maven {
- url "https://dl.bintray.com/kotlin/kotlin-dev"
- }
-}
-
-dependencies {
- dokkaRuntime files(dokka_fatjar)
- compile group: 'org.jetbrains.kotlin', name: 'kotlin-runtime', version: test_kotlin_version
- compile group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: test_kotlin_version
-}
-
-
-/*
-dokka {
- configuration {
- classpath += "$projectDir/classDir"
- }
-}
-
- */
diff --git a/integration-tests/gradle-integration-tests/testData/basic/classDir/p1/MyBinaryClass.class b/integration-tests/gradle-integration-tests/testData/basic/classDir/p1/MyBinaryClass.class
deleted file mode 100644
index ccfff300..00000000
--- a/integration-tests/gradle-integration-tests/testData/basic/classDir/p1/MyBinaryClass.class
+++ /dev/null
Binary files differ
diff --git a/integration-tests/gradle-integration-tests/testData/basic/fileTree.txt b/integration-tests/gradle-integration-tests/testData/basic/fileTree.txt
deleted file mode 100644
index 2ceae371..00000000
--- a/integration-tests/gradle-integration-tests/testData/basic/fileTree.txt
+++ /dev/null
@@ -1,33 +0,0 @@
-/
- basic/
- alltypes/
- index.html
- demo/
- -a/
- -init-.html
- index.html
- p.html
- -greeter/
- -init-.html
- greet.html
- index.html
- name.html
- -some-interface.html
- -some-sub-type/
- -init-.html
- index.html
- -some-type/
- -init-.html
- index.html
- constructor.html
- index.html
- main.html
- p1.-my-binary-class/
- index.html
- test.html
- str.html
- x.html
- index-outline.html
- index.html
- package-list
- style.css
diff --git a/integration-tests/gradle-integration-tests/testData/basic/settings.gradle b/integration-tests/gradle-integration-tests/testData/basic/settings.gradle
deleted file mode 100644
index a0498790..00000000
--- a/integration-tests/gradle-integration-tests/testData/basic/settings.gradle
+++ /dev/null
@@ -1,11 +0,0 @@
-pluginManagement {
- repositories {
- maven { url 'https://dl.bintray.com/kotlin/kotlin-dev/' }
- mavenLocal()
- mavenCentral()
- jcenter()
- gradlePluginPortal()
- }
-}
-
-rootProject.name = "basic"
diff --git a/integration-tests/gradle-integration-tests/testData/basic/src/main/kotlin/demo/HelloWorld.kt b/integration-tests/gradle-integration-tests/testData/basic/src/main/kotlin/demo/HelloWorld.kt
deleted file mode 100644
index 3d7bcb51..00000000
--- a/integration-tests/gradle-integration-tests/testData/basic/src/main/kotlin/demo/HelloWorld.kt
+++ /dev/null
@@ -1,45 +0,0 @@
-package demo
-
-import p1.MyBinaryClass
-
-/**
- * This class supports greeting people by name.
- *
- * @property name The name of the person to be greeted.
- */
-class Greeter(val name: String) {
-
- /**
- * Prints the greeting to the standard output.
- */
- fun greet() {
- println("Hello $name!")
- }
-}
-
-fun main(args: Array<String>) {
- Greeter(args[0]).greet()
-}
-
-val str = "Hello! ".repeat(4)
-val x: (a: String, b: Int) -> Int = { a, b -> 0 }
-
-interface SomeInterface
-private class SomeImpl : SomeInterface
-
-fun SomeInterface.constructor(): SomeInterface {
- return SomeImpl()
-}
-
-open class SomeType
-class SomeSubType : SomeType()
-
-fun SomeType.constructor(): SomeType {
- return SomeSubType()
-}
-
-
-annotation class A(val p: String)
-
-val MyBinaryClass.test get() = s()
-