public void TestDefaultConstructor()
        {
            DesktopControl desktop = new DesktopControl();

            Assert.IsNotNull(desktop); // nonsense; avoids compiler warning
        }
예제 #2
0
 public void TestDefaultConstructor() {
   DesktopControl desktop = new DesktopControl();
   Assert.IsNotNull(desktop); // nonsense; avoids compiler warning
 }