Package io.vertx.reactivex.ext.unit
Class TestCase
- java.lang.Object
-
- io.vertx.reactivex.ext.unit.TestCase
-
- All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate
public class TestCase extends Object implements io.vertx.lang.rx.RxDelegate
A test case object can be used to create a single test.NOTE: This class has been automatically generated from the
original
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<TestCase>
__TYPE_ARG
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TestCase
create(String name, Handler<TestContext> testCase)
Create a test case.boolean
equals(Object o)
TestCase
getDelegate()
int
hashCode()
static TestCase
newInstance(TestCase arg)
String
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<TestCase> __TYPE_ARG
-
-
Method Detail
-
getDelegate
public TestCase getDelegate()
- Specified by:
getDelegate
in interfaceio.vertx.lang.rx.RxDelegate
-
create
public static TestCase create(String name, Handler<TestContext> testCase)
Create a test case.- Parameters:
name
- the test case nametestCase
- the test case- Returns:
- the created test case
-
-