public void TestSimpleProperty()
        {

            //arrange
            var c = typeof(test1);
            var e = new TSConstEnumeration(c);
            e.Initialize();

            //act
            var res = e.ToTSString();

            //assert
            Assert.IsTrue(!string.IsNullOrEmpty(res));
        }
Example #2
0
        public void TestSimpleProperty()
        {
            //arrange
            var c = typeof(test1);
            var e = new TSConstEnumeration(c);

            e.Initialize();

            //act
            var res = e.ToTSString();

            //assert
            Assert.IsTrue(!string.IsNullOrEmpty(res));
        }