org.scalatest.PrivateMethodTester

class Invocation

[source: org/scalatest/PrivateMethodTester.scala]

final class Invocation[T](val methodName : scala.Symbol, val args : Any*)
extends AnyRef
Class whose instances represent an invocation of a private method. Instances of this class contain the name of the private method (methodName) and the arguments to pass to it during the invocation (args). The type parameter, T, is the return type of the private method.
Parameters
methodName - a Symbol representing the name of the private method to invoke
args - zero to many arguments to pass to the private method when invoked
Throws
NullPointerException - 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

Copyright (C) 2001-2010 Artima, Inc. All rights reserved.