public void ReturnsNoneAndWontMatchWithAssert() { Southeros southeros = new Southeros("D:\\Coding\\DotNet\\TameOfThrones\\TextFile\\input.txt"); Assert.NotEqual("SPACE LAND AIR", southeros.GetRulerAndAllies()); }
public void ReturnsNone() { Southeros southeros = new Southeros("D:\\Coding\\DotNet\\TameOfThrones\\TextFile\\input.txt"); Assert.Equal("None", southeros.GetRulerAndAllies()); }
public void ReturnsKingAndAllies() { Southeros southeros = new Southeros("D:\\Coding\\DotNet\\TameOfThrones\\geektrust\\input.txt"); Assert.Equal("SPACE FIRE AIR WATER", southeros.GetRulerAndAllies()); }