using Xunit; namespace nPathTests { public class NPathResultTest { public static string NPathResultShouldBe4(bool a, bool b, bool c) { if(a) { if(b) { if(c) { return "Path 1"; } return "Path 2"; } return "Path 3"; } return "Path 4"; } [Fact] public static void Test() { string result = NPathResultShouldBe4(true, true, true); Assert.Equal(result, "Path 1"); } } }