示例#1
0
        public void ReturnsNoneAndWontMatchWithAssert()
        {
            Southeros southeros = new Southeros("D:\\Coding\\DotNet\\TameOfThrones\\TextFile\\input.txt");

            Assert.NotEqual("SPACE LAND AIR", southeros.GetRulerAndAllies());
        }
示例#2
0
        public void ReturnsNone()
        {
            Southeros southeros = new Southeros("D:\\Coding\\DotNet\\TameOfThrones\\TextFile\\input.txt");

            Assert.Equal("None", southeros.GetRulerAndAllies());
        }
示例#3
0
        public void ReturnsKingAndAllies()
        {
            Southeros southeros = new Southeros("D:\\Coding\\DotNet\\TameOfThrones\\geektrust\\input.txt");

            Assert.Equal("SPACE FIRE AIR WATER", southeros.GetRulerAndAllies());
        }