Adding log.gd
This commit is contained in:
parent
eb32d6614e
commit
4522259397
547 changed files with 46844 additions and 0 deletions
160
addons/gdUnit4/src/GdUnitArrayAssert.gd
Normal file
160
addons/gdUnit4/src/GdUnitArrayAssert.gd
Normal file
|
|
@ -0,0 +1,160 @@
|
|||
## An Assertion Tool to verify array values
|
||||
class_name GdUnitArrayAssert
|
||||
extends GdUnitAssert
|
||||
|
||||
|
||||
## Verifies that the current value is null.
|
||||
func is_null() -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current value is not null.
|
||||
func is_not_null() -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current Array is equal to the given one.
|
||||
@warning_ignore("unused_parameter")
|
||||
func is_equal(expected) -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current Array is equal to the given one, ignoring case considerations.
|
||||
@warning_ignore("unused_parameter")
|
||||
func is_equal_ignoring_case(expected) -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current Array is not equal to the given one.
|
||||
@warning_ignore("unused_parameter")
|
||||
func is_not_equal(expected) -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current Array is not equal to the given one, ignoring case considerations.
|
||||
@warning_ignore("unused_parameter")
|
||||
func is_not_equal_ignoring_case(expected) -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current Array is empty, it has a size of 0.
|
||||
func is_empty() -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current Array is not empty, it has a size of minimum 1.
|
||||
func is_not_empty() -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
## Verifies that the current Array is the same. [br]
|
||||
## Compares the current by object reference equals
|
||||
@warning_ignore("unused_parameter", "shadowed_global_identifier")
|
||||
func is_same(expected) -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current Array is NOT the same. [br]
|
||||
## Compares the current by object reference equals
|
||||
@warning_ignore("unused_parameter", "shadowed_global_identifier")
|
||||
func is_not_same(expected) -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current Array has a size of given value.
|
||||
@warning_ignore("unused_parameter")
|
||||
func has_size(expectd: int) -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current Array contains the given values, in any order.[br]
|
||||
## The values are compared by deep parameter comparision, for object reference compare you have to use [method contains_same]
|
||||
@warning_ignore("unused_parameter")
|
||||
func contains(expected) -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current Array contains exactly only the given values and nothing else, in same order.[br]
|
||||
## The values are compared by deep parameter comparision, for object reference compare you have to use [method contains_same_exactly]
|
||||
@warning_ignore("unused_parameter")
|
||||
func contains_exactly(expected) -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current Array contains exactly only the given values and nothing else, in any order.[br]
|
||||
## The values are compared by deep parameter comparision, for object reference compare you have to use [method contains_same_exactly_in_any_order]
|
||||
@warning_ignore("unused_parameter")
|
||||
func contains_exactly_in_any_order(expected) -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current Array contains the given values, in any order.[br]
|
||||
## The values are compared by object reference, for deep parameter comparision use [method contains]
|
||||
@warning_ignore("unused_parameter")
|
||||
func contains_same(expected) -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current Array contains exactly only the given values and nothing else, in same order.[br]
|
||||
## The values are compared by object reference, for deep parameter comparision use [method contains_exactly]
|
||||
@warning_ignore("unused_parameter")
|
||||
func contains_same_exactly(expected) -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current Array contains exactly only the given values and nothing else, in any order.[br]
|
||||
## The values are compared by object reference, for deep parameter comparision use [method contains_exactly_in_any_order]
|
||||
@warning_ignore("unused_parameter")
|
||||
func contains_same_exactly_in_any_order(expected) -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current Array do NOT contains the given values, in any order.[br]
|
||||
## The values are compared by deep parameter comparision, for object reference compare you have to use [method not_contains_same]
|
||||
## [b]Example:[/b]
|
||||
## [codeblock]
|
||||
## # will succeed
|
||||
## assert_array([1, 2, 3, 4, 5]).not_contains([6])
|
||||
## # will fail
|
||||
## assert_array([1, 2, 3, 4, 5]).not_contains([2, 6])
|
||||
## [/codeblock]
|
||||
@warning_ignore("unused_parameter")
|
||||
func not_contains(expected) -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current Array do NOT contains the given values, in any order.[br]
|
||||
## The values are compared by object reference, for deep parameter comparision use [method not_contains]
|
||||
## [b]Example:[/b]
|
||||
## [codeblock]
|
||||
## # will succeed
|
||||
## assert_array([1, 2, 3, 4, 5]).not_contains([6])
|
||||
## # will fail
|
||||
## assert_array([1, 2, 3, 4, 5]).not_contains([2, 6])
|
||||
## [/codeblock]
|
||||
@warning_ignore("unused_parameter")
|
||||
func not_contains_same(expected) -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Extracts all values by given function name and optional arguments into a new ArrayAssert.
|
||||
## If the elements not accessible by `func_name` the value is converted to `"n.a"`, expecting null values
|
||||
@warning_ignore("unused_parameter")
|
||||
func extract(func_name: String, args := Array()) -> GdUnitArrayAssert:
|
||||
return self
|
||||
|
||||
|
||||
## Extracts all values by given extractor's into a new ArrayAssert.
|
||||
## If the elements not extractable than the value is converted to `"n.a"`, expecting null values
|
||||
@warning_ignore("unused_parameter")
|
||||
func extractv(
|
||||
extractor0 :GdUnitValueExtractor,
|
||||
extractor1 :GdUnitValueExtractor = null,
|
||||
extractor2 :GdUnitValueExtractor = null,
|
||||
extractor3 :GdUnitValueExtractor = null,
|
||||
extractor4 :GdUnitValueExtractor = null,
|
||||
extractor5 :GdUnitValueExtractor = null,
|
||||
extractor6 :GdUnitValueExtractor = null,
|
||||
extractor7 :GdUnitValueExtractor = null,
|
||||
extractor8 :GdUnitValueExtractor = null,
|
||||
extractor9 :GdUnitValueExtractor = null) -> GdUnitArrayAssert:
|
||||
return self
|
||||
Loading…
Add table
Add a link
Reference in a new issue