summaryrefslogtreecommitdiff
path: root/test/files/instrumented/InstrumentationTest.scala
blob: 0e53f8085732e562d6574f8d9c9fcd8eed8d9fb1 (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
import scala.tools.partest.instrumented.Instrumentation._

/** We check if classes put in empty package are properly instrumented */
class Foo1 {
  def someMethod = 0
}

/** We check if classes put in `instrumented` package are properly instrumented */
package instrumented {
  class Foo2 {
    def someMethod = 0
  }
}

/** Tests if instrumentation itself works correctly */
object Test {
  def main(args: Array[String]) {
    // force predef initialization before profiling
    Predef
    startProfiling()
    val foo1 = new Foo1
    foo1.someMethod
    val foo2 = new instrumented.Foo2
    foo2.someMethod
    // should box the boolean
    println(true)
    stopProfiling()
    printStatistics()
  }
}