1
0
mirror of https://github.com/ioacademy-jikim/debugging synced 2025-06-24 00:06:24 +00:00
2015-12-13 22:34:58 +09:00

19 lines
409 B
Plaintext

/* Make sure we catch implied tcase repeats (via same name as suite) */
# suite Lady
# tcase Luck
# test song
fail_unless("be a lady tonight");
# suite Luck
/* It's fine for a suite and tcase name to collide...
but the suite name implies a tcase name of the same value until we
override it. */
# test uh_oh
/* Uh-oh! Now we're using the implied tcase Luck, which already
* exists! */