Assume we have a null variable foo. Which is the correct way to use assert statements when writing junit tests with student.TestCase?

assertNull(foo);
  • All of these answers are correct
  • assertEquals(null, foo);
  • assertTrue(foo == null);

There are no hints for this question