Extends
Methods
add Sub Fixtures(fixture Registry)
This optional interface method can be implemented by a Fixture for a complex system which can be conceptually decomposed into separate sub-systems, enabling the fixture to delegate the handling of some fixture properties to the sub-fixtures. This method is called by the GWTTestRunner.
Parameters:
Name | Type | Description |
---|---|---|
fixtureRegistry |
module:br-test |
The registry to which the fixtures should be registered. |
- Inherited From:
can Handle Property(property Name) → {Boolean}
This method is called by the GWTTestRunner to check whether a property used in a GWT test is supported by the fixture.
Parameters:
Name | Type | Description |
---|---|---|
propertyName |
String | the property name to check. |
- Inherited From:
Returns:
true if the fixture handles the property; false otherwise.
- Type
- Boolean
do Given(property Name, value)
This method is called in order to manipulate a property on the system under test in a given clause.
Parameters:
Name | Type | Description |
---|---|---|
propertyName |
String | The property to be changed. |
value |
String | The new value of the property. |
- Inherited From:
do Then(property Name, value)
This method is called in order to assert a property's value on the system under test.
Parameters:
Name | Type | Description |
---|---|---|
propertyName |
String | The property name to assert. |
value |
String | The value to assert. |
- Inherited From:
do When(property Name, value)
This method is called in order to manipulate a property on the system under test in a when clause.
Parameters:
Name | Type | Description |
---|---|---|
propertyName |
String | The property to be changed. |
value |
String | The new value of the property. |
- Inherited From:
set Component(oComponent)
This method is called be the module:br-component/testing/ComponentFixture
after
the component is created.
Parameters:
Name | Type | Description |
---|---|---|
oComponent |
module:br-component |
the component instance managed by this ComponentModelFixture. |
set Up()
This method is called just before a GWT test. This optional interface method can be implemented if the fixture is required to correctly set up the system-under-test before each test.
- Inherited From:
tear Down()
This method is called just after a GWT test. This optional interface method can be implemented if the fixture is required to correctly tear down the system-under-test after each test or to reset any state held in the fixture's implementation.
- Inherited From: