Creates a new Conductor
, passes the Conductor
to the
specified test function, and ensures that conduct
gets invoked
on the Conductor
.
Creates a new Conductor
, passes the Conductor
to the
specified test function, and ensures that conduct
gets invoked
on the Conductor
.
After the test function returns (so long as it returns normally and doesn't
complete abruptly with an exception), this method will determine whether the
conduct
method has already been called (by invoking
conductingHasBegun
on the Conductor
). If not,
this method will invoke conduct
to ensure that the
multi-threaded test is actually conducted.
ConductorMultiFixture has been deprecated and will be removed in a future version of ScalaTest. Please copy the withConductorFixture method into your own trait instead.
This trait was originally intended for use with the "MultiFixture" traits in the
org.scalatest.fixture
package. Those traits were deprecated in favor of using explicit method calls (rather than implicit ones). So this trait is no longer relevant. You can still use the same approach if you want, of course, but since this will be going away in a future version of ScalaTest, please just copy the source code of thewithConductorFixture
method and place it into your own trait, then use that trait instead.Please copy the withConductorFixture method into your own trait instead.