10 lines
212 B
GDScript
10 lines
212 B
GDScript
class_name GdUnitExampleTest
|
|
extends GdUnitTestSuite
|
|
|
|
func test_example() -> void:
|
|
const EXAMPLE_STRING := "Dialogic!"
|
|
|
|
assert_str(EXAMPLE_STRING)\
|
|
.has_length(EXAMPLE_STRING.length())\
|
|
.starts_with("Dia")
|