Questions
The following questions will test your knowledge of the topics that were covered in this chapter:
- We have the following xUnit test method, but it isn't being picked up by the test runner. What's wrong?
public void Minus_When2Integers_ShouldReturnCorrectInteger() { var result = Calc.Add(2, 1); Assert.Equal(1, result); } - We have a
stringvariable calledsuccessMessagein a xUnit test and we need to check that it contains the word"success". What method in theAssertclass could we use? - We have created some Jest unit tests on a
Listcomponent in a file calledListTests.tsx. However, when the Jest test runner runs, the tests aren't picked up. Why is this happening? - We are implementing a test in Jest and we have a variable called
resultthat we want to check isn'tnull. Which Jest matcher function can we use? - Let's say we have a variable called
person...