UIZE JavaScript Framework

MODULES Uize.Test.Class

1. Introduction

The Uize.Test.Class module provides convenience methods for writing test cases against Uize.Class subclass modules.

DEVELOPERS: Ben Ilegbodu

1.1. Examples

There are no dedicated showcase example pages for the Uize.Test.Class module.

SEARCH FOR EXAMPLES

Use the link below to search for example pages on the UIZE Web site that reference the Uize.Test.Class module...

SEARCH

1.2. Implementation Info

The Uize.Test.Class module defines the Uize.Test.Class class, which is a subclass of Uize.Test.

INHERITANCE CHAIN

Uize.Class −> Uize.Class.Test −> Uize.Test −> Uize.Test.Class

1.2.1. Features Introduced in This Module

1.2.2. Features Overridden in This Module

The features listed in this section have been overridden in this module.

The module that an overridden feature was initially introduced in will be noted in the IMPLEMENTATION INFO notes for the feature.

INSTANCE METHODS

valueOf

STATIC METHODS

Uize.Test.Class.requiredModulesTest

STATIC PROPERTIES

Uize.Test.Class.moduleName | Uize.Test.Class.nonInheritableStatics

1.2.3. Features Inherited From Other Modules

The features listed in this section have been inherited from other modules.

The module that an inherited feature was initially introduced in will be noted in the IMPLEMENTATION INFO notes for the feature.

INSTANCE METHODS

expect | expectArray | expectArrayLike | expectBoolean | expectEmpty | expectEmptyArray | expectEmptyObject | expectEmptyString | expectFunction | expectInRange | expectInstanceOf | expectInteger | expectIntegerInRange | expectLengthInRange | expectNegativeInteger | expectNegativeNumber | expectNoRepeats | expectNonEmpty | expectNonEmptyArray | expectNonEmptyObject | expectNonEmptyString | expectNonNull | expectNotIdentical | expectNotSameAs | expectNully | expectNumber | expectNumberInRange | expectObject | expectPositiveInteger | expectPositiveNumber | expectRegExp | expectSameAs | expectString | expectType | fire | get | getDepth | getSynopsis | getTotalTests | is | isMet | kill | log | met | onChange | once | run | set | stop | toggle | unmet | unwire | whenever | wire

STATE PROPERTIES

duration | endTime | inProgress | isAsync | log | progress | reasonForFailure | result | startTime | test | title

STATIC METHODS

Uize.Test.Class.addTest | Uize.Test.Class.alphastructor | Uize.Test.Class.declare | Uize.Test.Class.doMy | Uize.Test.Class.dualContextMethods | Uize.Test.Class.dualContextProperties | Uize.Test.Class.fire | Uize.Test.Class.get | Uize.Test.Class.instanceMethods | Uize.Test.Class.instanceProperties | Uize.Test.Class.isAsync | Uize.Test.Class.migratedStaticMethodsTest | Uize.Test.Class.migratedStaticPropertiesTest | Uize.Test.Class.mixins | Uize.Test.Class.moduleAliasTest | Uize.Test.Class.omegastructor | Uize.Test.Class.resolve | Uize.Test.Class.set | Uize.Test.Class.singleton | Uize.Test.Class.splitHostAndProperty | Uize.Test.Class.stateProperties | Uize.Test.Class.staticMethodTest | Uize.Test.Class.staticMethods | Uize.Test.Class.staticMethodsTest | Uize.Test.Class.staticProperties | Uize.Test.Class.staticPropertyTest | Uize.Test.Class.subclass | Uize.Test.Class.testModuleTest | Uize.Test.Class.testSuite | Uize.Test.Class.toggle | Uize.Test.Class.unwire | Uize.Test.Class.wire

STATIC PROPERTIES

Uize.Test.Class.pathToResources

1.2.4. Modules Directly Under This Namespace

1.2.5. Unit Tests

There is no dedicated unit tests module for the Uize.Test.Class module.

2. Static Methods

2.1. Uize.Test.Class.addTest

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)
this static feature is inherited by subclasses

2.2. Uize.Test.Class.alphastructor

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.3. Uize.Test.Class.declare

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.4. Uize.Test.Class.derivedPropertiesTest

.

SYNTAX

testCLASS = Uize.Test.Class.derivedPropertiesTest (
  derivedPropertiesTestsARRAYorOBJ
);

2.4.1. derivedPropertiesTestARRAYorOBJ

See Uize.Test.Class.derivedPropertyTest static method for the structure for each set of derived property tests.

EXAMPLE

Uize.Test.Class.derivedPropertiesTest (
  [
    {
      propertyName:'isEmpty',
      cases:[
      ]
    },
    {
      propertyName:'oneSelected',
      cases:[
      ]
    },
    {
      propertyName:'someSelected',
      cases:[
      ]
    }
  ]
);

NOTES

see the related Uize.Test.Class.derivedPropertyTest static method

IMPLEMENTATION INFO

this feature was introduced in this module
this static feature is inherited by subclasses

2.5. Uize.Test.Class.derivedPropertyTest

.

SYNTAX

testCLASS = Uize.Test.Class.derivedPropertyTest (
  testParamsOBJ
);

2.5.1. testParamsOBJ

.

2.5.1.1. propertyName

.

2.5.1.2. cases

.

2.5.1.2.1. title

The title of the test case

2.5.1.2.2. instanceProperties

Properties to set on instance to cause derivation

2.5.1.2.3. expected

The expected derived value for the test case

2.5.1.2.4. expectFunc

A function (in lieu of the expected property) that takes the derived property value and a reference to the instance as parameters. It will return true if the derived property value is what is expected, false otherwise.

2.5.1.2.5. createParams

Optional parameters to pass to the create function (that override createParams for the testParamsObBJ).

2.5.1.3. instanceProperties

.

2.5.1.4. create

An alternative function for creating a model instance that would be different than just calling the constructor.

2.5.1.5. createParams

Optional parameters to pass to the create function.

2.5.1.6. testProperties

.

2.5.1.7. caseTestProperties

.

EXAMPLE

Uize.Test.Class.derivedPropertyTest (
  {
    propertyName:'isEmpty',
    cases:[
      {
        title:'No total items',
        instanceProperties:{totalItems:0},
        expected:true
      },
      {
        title:'1 total items',
        instanceProperties:{totalItems:1},
        expected:false
      },
      {
        title:'Many total items',
        instanceProperties:{totalItems:2},
        expectFunc:function(derivedPropertyValue, instance) {
          return this.expect(false, derivedPropertyValue);
        }
      }
    ]
  }
);

NOTES

see the related Uize.Test.Class.derivedPropertiesTest static method

IMPLEMENTATION INFO

this feature was introduced in this module
this static feature is inherited by subclasses

2.6. Uize.Test.Class.doMy

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.7. Uize.Test.Class.dualContextMethods

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.8. Uize.Test.Class.dualContextProperties

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.9. Uize.Test.Class.fire

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.10. Uize.Test.Class.get

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.11. Uize.Test.Class.getInstance

Gets an instantiation of class defined by the moduleToTest state property.

IMPLEMENTATION INFO

this feature was introduced in this module
this static feature is inherited by subclasses

2.12. Uize.Test.Class.getModule

Gets a reference to the class defined by the moduleToTest state property.

IMPLEMENTATION INFO

this feature was introduced in this module
this static feature is inherited by subclasses

2.13. Uize.Test.Class.instanceMethodTest

.

SYNTAX

testCLASS = Uize.Test.Class.instanceMethodTest (
  paramsOBJ
);

2.13.1. paramsOBJ

.

2.13.1.1. methodName

.

2.13.1.2. cases

.

2.13.1.2.1. title

.

2.13.1.2.2. params

.

2.13.1.2.3. instanceProperties

.

2.13.1.2.4. expected

.

2.13.1.2.5. expectFunc

.

2.13.1.2.6. initialize

.

2.13.1.2.7. createParams

Optional parameters to pass to the create function (that override createParams for the testParamsObBJ).

2.13.1.3. instanceProperties

.

2.13.1.4. initialize

.

2.13.1.5. title

optional

2.13.1.6. create

An alternative function for creating a instance that would be different than just calling the constructor.

2.13.1.7. createParams

Optional parameters to pass to the create function.

2.13.1.8. testProperties

.

EXAMPLE

Uize.Test.Class.instanceMethodTest (
  {
    methodName:'getCurve',
    cases:[
      {
        params:['position'],
        expected:true
      }
    ]
  }
);

NOTES

see the related Uize.Test.Class.instanceMethodsTest static method

IMPLEMENTATION INFO

this feature was introduced in this module
this static feature is inherited by subclasses

2.14. Uize.Test.Class.instanceMethods

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.15. Uize.Test.Class.instanceMethodsTest

.

SYNTAX

testCLASS = Uize.Test.Class.instanceMethodsTest (
  instanceMethodsTestsARRAYorOBJ
);

2.15.1. instanceMethodsTestsARRAYorOBJ

See Uize.Test.Class.instanceMethodTest static method for the structure for each set of instance method tests.

EXAMPLE

Uize.Test.Class.instanceMethodsTest (
  [
    {
      methodName:'getCurve',
      cases:[
      ]
    },
    {
      methodName:'getDialogProperties',
      cases:[
      ]
    }
  ]
);

NOTES

see the related Uize.Test.Class.instanceMethodTest static method

IMPLEMENTATION INFO

this feature was introduced in this module
this static feature is inherited by subclasses

2.16. Uize.Test.Class.instanceProperties

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.17. Uize.Test.Class.isAsync

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)
this static feature is inherited by subclasses

2.18. Uize.Test.Class.makeDeclarativeCasesPropertyTest

.

SYNTAX

testCLASS = Uize.Test.Class.makeDeclarativeCasesPropertyTest (
  testTitleSTR,
  testParamsOBJ
);

NOTES

see the related Uize.Test.Class.makeDeclarativeCasesTest and Uize.Test.Class.makeMultipleDeclarativeCasesTest static methods

IMPLEMENTATION INFO

this feature was introduced in this module
this static feature is inherited by subclasses

2.19. Uize.Test.Class.makeDeclarativeCasesTest

.

SYNTAX

testCLASS = Uize.Test.Class.makeDeclarativeCasesTest (
  testTitleSTR,
  casesARRAY,
  testFUNC,
  testPropertiesOBJ,
  caseTestPropertiesOBJ
);

NOTES

see the related Uize.Test.Class.makeMultipleDeclarativeCasesTest static method

IMPLEMENTATION INFO

this feature was introduced in this module
this static feature is inherited by subclasses

2.20. Uize.Test.Class.makeMultipleDeclarativeCasesTest

.

SYNTAX

testCLASS = Uize.Test.Class.makeMultipleDeclarativeCasesTest (
  testTitleSTR,
  makeTestFUNC,
  casesARRAY
);

NOTES

see the related and Uize.Test.Class.makeDeclarativeCasesPropertyTest Uize.Test.Class.makeDeclarativeCasesTest static methods

IMPLEMENTATION INFO

this feature was introduced in this module
this static feature is inherited by subclasses

2.21. Uize.Test.Class.migratedStaticMethodsTest

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)
this static feature is inherited by subclasses

2.22. Uize.Test.Class.migratedStaticPropertiesTest

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)
this static feature is inherited by subclasses

2.23. Uize.Test.Class.mixins

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.24. Uize.Test.Class.moduleAliasTest

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)
this static feature is inherited by subclasses

2.25. Uize.Test.Class.moduleToTest

IMPLEMENTATION INFO

this feature was introduced in this module
this static feature is inherited by subclasses

2.26. Uize.Test.Class.omegastructor

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.27. Uize.Test.Class.propertyConformerTest

.

SYNTAX

testCLASS = Uize.Test.Class.propertyConformerTest (
  testParamsOBJ
);

2.27.1. testParamsOBJ

.

2.27.1.1. propertyName

.

2.27.1.2. cases

.

2.27.1.2.1. title

The title of the test case

2.27.1.2.2. instanceProperties

Properties to set on instance to cause derivation

2.27.1.2.3. expected

The expected derived value for the test case

2.27.1.3. instanceProperties

.

2.27.1.4. testProperties

.

2.27.1.5. caseTestProperties

.

EXAMPLE

Uize.Test.Class.propertyConformerTest (
  {
    propertyName:'listName',
    cases:[
      {
        title:'Caps are lowercase',
        instanceProperties:{listName:'FOO'},
        expected:'foo'
      },
      {
        title:'Mixed case is lowercase',
        instanceProperties:{listName:'FoO'},
        expected:'foo'
      },
      {
        title:'Lower case is still lowercase',
        instanceProperties:{listName:'foo'},
        expected:'foo'
      ]
    ]
  }
);

NOTES

see the related Uize.Test.Class.propertyConformersTest static method

IMPLEMENTATION INFO

this feature was introduced in this module
this static feature is inherited by subclasses

2.28. Uize.Test.Class.propertyConformersTest

.

SYNTAX

testCLASS = Uize.Test.Class.propertyConformersTest (
  propertyConformersTestARRAYorOBJ
);

2.28.1. propertyConformersTestARRAYorOBJ

See Uize.Test.Class.propertyConformerTest static method for the structure for each set of property conformer tests.

EXAMPLE

Uize.Test.Class.propertyConformersTest (
  [
    {
      propertyName:'listName',
      cases:[
      ]
    }
    ..
  ]
);

NOTES

see the related Uize.Test.Class.propertyConformerTest static method

IMPLEMENTATION INFO

this feature was introduced in this module
this static feature is inherited by subclasses

2.29. Uize.Test.Class.requiredModulesTest

IMPLEMENTATION INFO

this is an override of an inherited feature (implementation is in this module, first introduced in Uize.Test)
this static feature is inherited by subclasses

2.30. Uize.Test.Class.resolve

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)
this static feature is inherited by subclasses

2.31. Uize.Test.Class.set

Inherited from Uize.Class.Test, but introduced in Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.32. Uize.Test.Class.singleton

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.33. Uize.Test.Class.splitHostAndProperty

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)
this static feature is inherited by subclasses

2.34. Uize.Test.Class.stateProperties

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.35. Uize.Test.Class.staticMethodTest

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)
this static feature is inherited by subclasses

2.36. Uize.Test.Class.staticMethods

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.37. Uize.Test.Class.staticMethodsTest

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)
this static feature is inherited by subclasses

2.38. Uize.Test.Class.staticProperties

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.39. Uize.Test.Class.staticPropertyTest

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)
this static feature is inherited by subclasses

2.40. Uize.Test.Class.subclass

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.41. Uize.Test.Class.testModuleTest

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)
this static feature is inherited by subclasses

2.42. Uize.Test.Class.testSuite

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)
this static feature is inherited by subclasses

2.43. Uize.Test.Class.toggle

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.44. Uize.Test.Class.unwire

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

2.45. Uize.Test.Class.wire

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

3. Instance Methods

3.1. expect

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.2. expectArray

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.3. expectArrayLike

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.4. expectBoolean

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.5. expectEmpty

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.6. expectEmptyArray

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.7. expectEmptyObject

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.8. expectEmptyString

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.9. expectFunction

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.10. expectInRange

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.11. expectInstanceOf

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.12. expectInteger

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.13. expectIntegerInRange

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.14. expectLengthInRange

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.15. expectNegativeInteger

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.16. expectNegativeNumber

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.17. expectNoRepeats

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.18. expectNonEmpty

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.19. expectNonEmptyArray

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.20. expectNonEmptyObject

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.21. expectNonEmptyString

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.22. expectNonNull

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.23. expectNotIdentical

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.24. expectNotSameAs

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.25. expectNully

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.26. expectNumber

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.27. expectNumberInRange

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.28. expectObject

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.29. expectPositiveInteger

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.30. expectPositiveNumber

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.31. expectRegExp

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.32. expectSameAs

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.33. expectString

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.34. expectType

Inherited from Uize.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Test, first introduced in Uize.Test)

3.35. fire

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

3.36. get

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

3.37. getDepth

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)

3.38. getSynopsis

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)

3.39. getTotalTests

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)

3.40. is

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

3.41. isMet

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

3.42. kill

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

3.43. log

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)

3.44. met

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

3.45. onChange

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

3.46. once

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

3.47. run

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)

3.48. set

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

3.49. setInstance

IMPLEMENTATION INFO

this feature was introduced in this module

3.50. stop

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)

3.51. toggle

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

3.52. unmet

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

3.53. unwire

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

3.54. valueOf

this is an override of an inherited feature (implementation is in this module, first introduced in Uize.Class)

IMPLEMENTATION INFO

3.55. whenever

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

3.56. wire

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

4. State Properties

4.1. duration

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)

4.2. endTime

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)

4.3. inProgress

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)

4.4. instance

IMPLEMENTATION INFO

this feature was introduced in this module

4.5. isAsync

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)

4.6. log

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)

4.7. moduleToTest

IMPLEMENTATION INFO

this feature was introduced in this module

4.8. progress

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)

4.9. reasonForFailure

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)

4.10. result

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)

4.11. startTime

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)

4.12. test

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)

4.13. title

Inherited from Uize.Class.Test.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class.Test, first introduced in Uize.Class.Test)

5. Static Properties

5.1. Uize.Test.Class.moduleName

IMPLEMENTATION INFO

this is an override of an inherited feature (implementation is in this module, first introduced in Uize.Class)
this static feature is inherited by subclasses

5.2. Uize.Test.Class.nonInheritableStatics

IMPLEMENTATION INFO

this is an override of an inherited feature (implementation is in this module, first introduced in Uize.Class)
this static feature is not inherited by subclasses

5.3. Uize.Test.Class.pathToResources

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses