In a test that contains some asserts, for example:
Assert.AreEqual(1,1); Assert.AreEqual(2,1); Assert.AreEqual(2,2);
is it possible to let
No. Typically in this situation you would put all the code above the asserts into a setup method, then write each assert into its own test case.