You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser=argparse.ArgumentParser(description="Creates a new unit test file.")
16
-
parser.add_argument("name", type=str, help="The unit test name in PascalCase notation")
16
+
parser.add_argument(
17
+
"name",
18
+
type=str,
19
+
help="Specifies the class or component name to be tested, in PascalCase (e.g., MeshInstance3D). The name will be prefixed with 'test_' for the header file and 'Test' for the namespace.",
20
+
)
17
21
parser.add_argument(
18
22
"path",
19
23
type=str,
20
24
nargs="?",
21
-
help="The path to the unit test file relative to the tests folder (default: .)",
25
+
help="The path to the unit test file relative to the tests folder (e.g. core). This should correspond to the relative path of the class or component being tested. (default: .)",
0 commit comments