public void Assertion()
 {
     Bar bar = new Bar();
       bar.Thing = "Hello World!";
       Assert.NotNull(bar);
       Assert.Equal("Hello World!", bar.Thing);
 }
 /// <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);
 }