public void TableTooSmallNotValid() { Assert.Throws <ArgumentException>(() => { var table = new Table2D(x, y, new[] { f[0], f[1] }); table.Validate(); }); }
public void ValidateTest() { var table = new Table2D(x, y, f); table.Validate(); }