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

            Assert.IsNotNull(desktop); // nonsense; avoids compiler warning
        }
Exemplo n.º 2
0
 public void TestDefaultConstructor() {
   DesktopControl desktop = new DesktopControl();
   Assert.IsNotNull(desktop); // nonsense; avoids compiler warning
 }