Ejemplo n.º 1
0
 public void Assertion()
 {
     Bar bar = new Bar();
       bar.Thing = "Hello World!";
       Assert.NotNull(bar);
       Assert.Equal("Hello World!", bar.Thing);
 }
Ejemplo n.º 2
0
 /// <summary>The main entry point to the application.</summary>
 public static void Main()
 {
     Bar bar = new Bar();
       bar.Thing = "Hello World!";
       bar.Baz(bar.Thing);
 }