Beispiel #1
0
        public void AsynchroneToStringTest()
        {
            Asynchrone target   = new Asynchrone();
            string     expected = "Asynchrone";
            string     actual;

            actual = target.ToString();
            Assert.AreEqual(expected, actual, "AsynchroneToStringTest");
        }
Beispiel #2
0
        public void AsynchroneConstructorTest()
        {
            Asynchrone target = new Asynchrone();

            Assert.IsNotNull(target, "AsynchroneConstructorTest");
        }