In the "AAA" template, where do I need to record activity data?
In the Law or in the Assert section?
Consider this Unit Test, the extraction of two persons, should it be in the Law, as in the example or in Assert? We would like to make a standard for all of our UT in the company.
[Test] public void Test() {
(please ignore that in this simple test I can write Assert.AreEqual(p1.Id, result[0].Id); )
I know this is not a huge problem, but I still want to know how to do things better.
source share