public void GeneratorReturnsResultNotZertLengthForEntity() { OgrnGeneratorService testExample = new OgrnGeneratorService(); string result = testExample.Generate("1"); Assert.IsTrue(result.Length != 0); }
public void GeneratorReturnsResultNotZeroLengthForIndividual() { OgrnGeneratorService testExample = new OgrnGeneratorService(); string result = testExample.Generate("2"); Assert.IsTrue(result.Length != 0); }
public void GeneratorReturnsString() { OgrnGeneratorService testExample = new OgrnGeneratorService(); var result = testExample.Generate("1"); Assert.IsTrue(result is string); }