Question: How is the behavior of `t.Fatal` different inside a `t.Run`?
- There is no difference.
- t.Fatal does not crash the test harness, preserving output messages.
- t.Fatal stops execution of the subtest and continues with other test cases.
- t.Fatal stops all tests and contains extra information about the failed subtest.
Answer: The correct answer of the above question is Option C:t.Fatal stops execution of the subtest and continues with other test cases.