10 lines
210 B
GDScript3
10 lines
210 B
GDScript3
|
extends BessereTestsTest
|
||
|
|
||
|
func test_logging() -> void:
|
||
|
ldiag("DIAGNOSTIC MESSAGE")
|
||
|
lverb("VERBOSE MESSAGE")
|
||
|
linfo("INFORMATIONAL MESSAGE")
|
||
|
lwarn("WARNING MESSAGE")
|
||
|
lerror("ERROR MESSAGE")
|
||
|
test_status = 0
|