ScalaTest 1.0
|
|
org/scalatest/PrivateMethodTester.scala
]
final
class
Invocation[T](val
methodName : scala.Symbol, val
args : Any*)
extends
AnyRefmethodName
) and the arguments
to pass to it during the invocation (args
).
The type parameter, T
, is the return type of the private method.methodName -
a Symbol
representing the name of the private method to invokeargs -
zero to many arguments to pass to the private method when invokedNullPointerException -
if methodName
is null
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
ScalaTest 1.0
|
|