Adding log.gd
This commit is contained in:
parent
eb32d6614e
commit
4522259397
547 changed files with 46844 additions and 0 deletions
35
addons/gdUnit4/src/GdUnitAssert.gd
Normal file
35
addons/gdUnit4/src/GdUnitAssert.gd
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
## Base interface of all GdUnit asserts
|
||||
class_name GdUnitAssert
|
||||
extends RefCounted
|
||||
|
||||
|
||||
## Verifies that the current value is null.
|
||||
func is_null():
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current value is not null.
|
||||
func is_not_null():
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current value is equal to expected one.
|
||||
@warning_ignore("unused_parameter")
|
||||
func is_equal(expected):
|
||||
return self
|
||||
|
||||
|
||||
## Verifies that the current value is not equal to expected one.
|
||||
@warning_ignore("unused_parameter")
|
||||
func is_not_equal(expected):
|
||||
return self
|
||||
|
||||
|
||||
func test_fail():
|
||||
return self
|
||||
|
||||
|
||||
## Overrides the default failure message by given custom message.
|
||||
@warning_ignore("unused_parameter")
|
||||
func override_failure_message(message :String):
|
||||
return self
|
||||
Loading…
Add table
Add a link
Reference in a new issue