summaryrefslogtreecommitdiff
path: root/test/files/run/junitForwarders/C_1.scala
blob: 2af2026a6124cbcc8419b7fa038b8caaba1bb345 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
trait T {
  @org.junit.Test def foo = 0
}

class C extends T

object Test extends App {
  def check(c: Class[_], e: String) = {
    val s = c.getDeclaredMethods.sortBy(_.getName).map(m => s"${m.getName} - ${m.getDeclaredAnnotations.mkString(", ")}").mkString(";")
    assert(s == e, s"found: $s\nexpected: $e")
  }
  check(classOf[C], "foo - @org.junit.Test()")
  // TODO scala-dev#213: should `foo$` really carry the @Test annotation?
  check(classOf[T], "$init$ - ;foo - @org.junit.Test();foo$ - @org.junit.Test()")
}