24 lines
262 B
GDScript3
24 lines
262 B
GDScript3
|
|
extends "res://addons/gut/test.gd"
|
||
|
|
|
||
|
|
|
||
|
|
# #############
|
||
|
|
# Seutp/Teardown
|
||
|
|
# #############
|
||
|
|
func before_all():
|
||
|
|
pass
|
||
|
|
|
||
|
|
func before_each():
|
||
|
|
pass
|
||
|
|
|
||
|
|
func after_each():
|
||
|
|
pass
|
||
|
|
|
||
|
|
func after_all():
|
||
|
|
pass
|
||
|
|
|
||
|
|
# #############
|
||
|
|
# Tests
|
||
|
|
# #############
|
||
|
|
func test_pending():
|
||
|
|
pending()
|