Exemplo n.º 1
0
 public void Ctor_NullName_throws()
 {
     Layer l = new LayerBuilder()
         .Initialize()
         .SetName(null);
 }
Exemplo n.º 2
0
 public void Ctor_NullGridSet_throws()
 {
     Layer l = new LayerBuilder()
         .Initialize()
         .SetGridSet(null);
 }