private static void CallConstructorTestDummy()
 {
     ConstructorTest.Dummy();
 }
    public void TestMethod()
    {
        var test = new ConstructorTest(3);

        Console.WriteLine(test.Field2);
    }
Exemple #3
0
 public void ConstructorThrowsExpectedExceptions()
 => ConstructorTest.AssertArgumentNullExceptions <BudgetViewModel>();