Esempio n. 1
0
 public void Column_Ctor_Throws_ArgumentNull_WhenRowIsNull()
 {
     RowCollection r = null;
     var           c = new Column(r, 0);
 }
Esempio n. 2
0
 public void RowCollection_Ctor_WithDefaults_Succeeds()
 {
     UnderTest = new RowCollection(new Row[] { new Row(), new Row() });
     Assert.IsNotNull(UnderTest);
 }
Esempio n. 3
0
 public void TestSetup()
 {
     Rows      = new RowCollection(new Row[] { new Row().AddCells("R1C1", "R1C2", "R1C3"), new Row().AddCells("R2C1", "R2C2", "R2C3") });
     UnderTest = new Column(Rows, 2);
 }
Esempio n. 4
0
 public void TestSetup()
 {
     UnderTest = new RowCollection();
 }