Exemplo n.º 1
0
        public void GeneratorReturnsString()
        {
            LocalityTypeGeneratorService testExample = new LocalityTypeGeneratorService();
            var result = testExample.Generate();

            Assert.IsTrue(result is string);
        }
Exemplo n.º 2
0
        public void GeneratorReturnsStringNotZeroLength()
        {
            LocalityTypeGeneratorService testExample = new LocalityTypeGeneratorService();
            string result = testExample.Generate();

            Assert.IsTrue(result.Length > 0);
        }