diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-11-14 16:33:41 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-11-14 16:33:41 +0300 |
commit | ec40a94e76d33fb77c58e2b4fe8b9aa150885f0a (patch) | |
tree | 681be7e085be713aea5a2a944eb664bed905f69d /core/testdata/format/website-html/sampleWithAsserts.html | |
parent | a3ea8698452c132ae4a756d617775f40f036b907 (diff) | |
download | dokka-ec40a94e76d33fb77c58e2b4fe8b9aa150885f0a.tar.gz dokka-ec40a94e76d33fb77c58e2b4fe8b9aa150885f0a.tar.bz2 dokka-ec40a94e76d33fb77c58e2b4fe8b9aa150885f0a.zip |
Handle indent correctly, Add tests for assertTrue/False samples
Diffstat (limited to 'core/testdata/format/website-html/sampleWithAsserts.html')
-rw-r--r-- | core/testdata/format/website-html/sampleWithAsserts.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/testdata/format/website-html/sampleWithAsserts.html b/core/testdata/format/website-html/sampleWithAsserts.html index e70d37c9..11a3a626 100644 --- a/core/testdata/format/website-html/sampleWithAsserts.html +++ b/core/testdata/format/website-html/sampleWithAsserts.html @@ -9,7 +9,14 @@ fun main(args: Array<String>) { //sampleStart println(a()) // Hello, Work println("a() == b() is ${a() == b()}") // true +// A eq B +println("a() == b() is ${a() == b()}") // true // readSomeFile(File("some.txt")) // reading file now will fail // readSomeFile(File("some.txt")) // will fail with FileNotFoundException + +fun indented() { + // A neq B + println("a() != b() is ${a() != b()}") // false +} //sampleEnd }</code></pre></div> |