TestCaseKilledTbl

This could use an intermediate adapter table to normalise the test_case data but I chose not to do that because it makes it harder to add test cases and do a cleanup.

package
@TableName(killedTestCaseTable)
@TableForeignKey("st_id", KeyRef("mutation_status(id)"), KeyParam("ON DELETE CASCADE"))
@TableForeignKey("tc_id", KeyRef("all_test_case(id)"), KeyParam("ON DELETE CASCADE"))
@TableConstraint("unique_ UNIQUE (st_id, tc_id)")
struct TestCaseKilledTbl {}

Members

Variables

id
long id;
Undocumented in source.
location
string location;
Undocumented in source.
mutationStatusId
long mutationStatusId;
Undocumented in source.
testCaseId
long testCaseId;
Undocumented in source.

Meta