Question: How is the behavior of `t.Fatal` different inside a `t.Run`?

  1. There is no difference.
  2. t.Fatal does not crash the test harness, preserving output messages.
  3. t.Fatal stops execution of the subtest and continues with other test cases.
  4. 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.