Ad
  • Custom User Avatar

    the expected and actual are the wrong way round in the assert. this gives an incorrect error message

  • Custom User Avatar

    Random Tests are non deterministic, so should never be a part of a repeatable test set.
    If you create random tests, the very least it should show is why it fails.
    The reason it failed for me is that I was following the instructions for a string format of "MMMM d, yyyy", but the random tests had a date format of "MMMM d yyyy", i.e. the comma was missing. It was only by deviating from the instructions that the tests would pass.