summaryrefslogtreecommitdiff
path: root/test/scaladoc/run/t5730.scala
blob: cc4c2444b16e995af1f7f7cc887da02dc47f48a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import scala.tools.nsc.doc.base._
import scala.tools.nsc.doc.model._
import scala.tools.partest.ScaladocModelTest

object Test extends ScaladocModelTest {

  override def code = """
      package scala.test.scaladoc.T5730

      /**
       *  A link:
       *
       * [[scala.Option$ object Option]].
       */
      sealed abstract class A

      case object B extends A

      abstract final class C
      """

  def scaladocSettings = ""

  def testModel(rootPackage: Package) = {
    // get the quick access implicit defs in scope (_package(s), _class(es), _trait(s), object(s) _method(s), _value(s))
    import access._

    val p = rootPackage._package("scala")._package("test")._package("scaladoc")._package("T5730")

    val a = p._class("A")
    val c = p._class("C")

    assert(a.constructors.isEmpty, s"there should be no constructors, found: ${a.constructors}")
    assert(c.constructors.isEmpty, s"there should be no constructors, found: ${c.constructors}")
  }
}