trait AsyncJMockCycleFixture extends AnyRef
Trait that will pass a new JMockCycle
into any test that needs one.
This trait, which must be mixed into a fixture.AsyncSuite
, defines the
Fixture
type to be JMockCycle
and defines a
withFixture
method that instantiates a new JMockCycle
and passes it to the test function.
- Self Type
- AsyncJMockCycleFixture with fixture.AsyncTestSuite
- Source
- AsyncJMockCycleFixture.scala
- Alphabetic
- By Inheritance
- AsyncJMockCycleFixture
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
type
FixtureParam = JMockCycle
Defines the
Fixture
type to beJMockCycle
.Defines the
Fixture
type to beJMockCycle
.
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
withFixture(test: (AsyncJMockCycleFixture.this)#OneArgAsyncTest): FutureOutcome
Instantiates a new
JMockCycle
and passes it to the test function.Instantiates a new
JMockCycle
and passes it to the test function.- test
the test function to which to pass a new
JMockCycle