58 lines
1.8 KiB
GDScript
58 lines
1.8 KiB
GDScript
## An Assertion Tool to verify Vector values
|
|
class_name GdUnitVectorAssert
|
|
extends GdUnitAssert
|
|
|
|
|
|
## Verifies that the current value is equal to expected one.
|
|
@warning_ignore("unused_parameter")
|
|
func is_equal(expected :Variant) -> GdUnitVectorAssert:
|
|
return self
|
|
|
|
|
|
## Verifies that the current value is not equal to expected one.
|
|
@warning_ignore("unused_parameter")
|
|
func is_not_equal(expected :Variant) -> GdUnitVectorAssert:
|
|
return self
|
|
|
|
|
|
## Verifies that the current and expected value are approximately equal.
|
|
@warning_ignore("unused_parameter", "shadowed_global_identifier")
|
|
func is_equal_approx(expected :Variant, approx :Variant) -> GdUnitVectorAssert:
|
|
return self
|
|
|
|
|
|
## Verifies that the current value is less than the given one.
|
|
@warning_ignore("unused_parameter")
|
|
func is_less(expected :Variant) -> GdUnitVectorAssert:
|
|
return self
|
|
|
|
|
|
## Verifies that the current value is less than or equal the given one.
|
|
@warning_ignore("unused_parameter")
|
|
func is_less_equal(expected :Variant) -> GdUnitVectorAssert:
|
|
return self
|
|
|
|
|
|
## Verifies that the current value is greater than the given one.
|
|
@warning_ignore("unused_parameter")
|
|
func is_greater(expected :Variant) -> GdUnitVectorAssert:
|
|
return self
|
|
|
|
|
|
## Verifies that the current value is greater than or equal the given one.
|
|
@warning_ignore("unused_parameter")
|
|
func is_greater_equal(expected :Variant) -> GdUnitVectorAssert:
|
|
return self
|
|
|
|
|
|
## Verifies that the current value is between the given boundaries (inclusive).
|
|
@warning_ignore("unused_parameter")
|
|
func is_between(from :Variant, to :Variant) -> GdUnitVectorAssert:
|
|
return self
|
|
|
|
|
|
## Verifies that the current value is not between the given boundaries (inclusive).
|
|
@warning_ignore("unused_parameter")
|
|
func is_not_between(from :Variant, to :Variant) -> GdUnitVectorAssert:
|
|
return self
|