public void assert_null()
 {
     Assertion.Null(null);
     Assert.Throws <ArgumentException>(() => Assertion.Null(new object()));
 }