예제 #1
0
 public static void Main(string[] args)
 {
     using (var component = new Component())
     {
         Assert.That(component, Is.Not.Null);
     }
 }
예제 #2
0
 public void TestInstantiation()
 {
     using (var component = new Component())
     {
         Assert.That(component, Is.Not.Null);
     }
 }