summaryrefslogtreecommitdiff
path: root/test/scaladoc/run/SI-3448.scala
blob: a2d3f59596060d5867d365e9adfa75891a14f506 (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
37
38
import scala.tools.nsc.doc.model._
import scala.tools.partest.ScaladocModelTest

object Test extends ScaladocModelTest {

  // Working around the fact that usecases have the form Coll[T] and not Coll[T, U], as required by Map
  override def code = """
      /**
       * @define Coll C[T]
       */
      class C[T] {
        /**
         * @usecase def foo[T]: $Coll[T]
         */
        def foo[T: Numeric]: C[T]
      }


      /**
       * @define Coll D1[T]
       */
      class D[U, T] extends C[T] {
        protected type D1[Z] = D[U, Z]
      }
  """

  // no need for special settings
  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._

    // just need to check the member exists, access methods will throw an error if there's a problem
    assert(rootPackage._class("D")._method("foo").resultType.name == "D[U, T]",
           rootPackage._class("D")._method("foo").resultType.name + " == D[U, T]")
  }
}