public void GeneratorReturnsString() { RankGeneratorService testExample = new RankGeneratorService(); var result = testExample.Generate(); Assert.IsTrue(result is string); }
public void GeneratorReturnsResultNotZeroLength() { RankGeneratorService testExample = new RankGeneratorService(); string result = testExample.Generate(); Assert.IsTrue(result.Length > 0); }