aboutsummaryrefslogtreecommitdiff
path: root/dottydoc/test/WhitelistedStdLib.scala
diff options
context:
space:
mode:
Diffstat (limited to 'dottydoc/test/WhitelistedStdLib.scala')
-rw-r--r--dottydoc/test/WhitelistedStdLib.scala45
1 files changed, 0 insertions, 45 deletions
diff --git a/dottydoc/test/WhitelistedStdLib.scala b/dottydoc/test/WhitelistedStdLib.scala
deleted file mode 100644
index 48697ea7f..000000000
--- a/dottydoc/test/WhitelistedStdLib.scala
+++ /dev/null
@@ -1,45 +0,0 @@
-package dotty.tools
-package dottydoc
-
-import org.junit.Test
-import org.junit.Assert._
-
-class TestWhitelistedCollections extends DottyTest {
- val files: List[String] = {
- val whitelist = "./test/dotc/scala-collections.whitelist"
-
- scala.io.Source.fromFile(whitelist, "UTF8")
- .getLines()
- .map(_.trim) // allow identation
- .filter(!_.startsWith("#")) // allow comment lines prefixed by #
- .map(_.takeWhile(_ != '#').trim) // allow comments in the end of line
- .filter(_.nonEmpty)
- .filterNot(_.endsWith("package.scala"))
- .toList
- }
-
- @Test def arrayHasDocumentation =
- checkFiles(files) { packages =>
- val array =
- packages("scala")
- .children.find(_.path.mkString(".") == "scala.Array")
- .get
-
- assert(array.comment.get.body.length > 0)
- }
-
- @Test def traitImmutableHasDocumentation =
- checkFiles(files) { packages =>
- val imm =
- packages("scala")
- .children.find(_.path.mkString(".") == "scala.Immutable")
- .get
-
- assert(
- imm.kind == "trait" && imm.name == "Immutable",
- "Found wrong `Immutable`")
- assert(
- imm.comment.map(_.body).get.length > 0,
- "Imm did not have a comment with length > 0")
- }
-}