Exemplo n.º 1
0
        public void TestMethod1()
        {
            //arrange

            //act
            var result = new AsyncRetValue<Boolean>();
            result = target.AsyncParseThis("directcod", PrintResult);

            while (!result.IsComplete())
            {
                //
            }

            //assert
            Assert.IsTrue(result.Value);
        }