extends "res://tests/test_case.gd" # Proves the runner itself works: discovery, dispatch, pass/fail aggregation. func test_true_is_true() -> void: assert_true(true, "true should be true") func test_addition() -> void: assert_eq(2 + 2, 4, "2 + 2") func test_almost_eq_tolerance() -> void: assert_almost_eq(1.0001, 1.0, 0.001, "1.0001 within 0.001 of 1.0")