Exemplo n.º 1
0
 public void TestCreateFittedCoordinateSystem1()
 {
     try
     {
         IAxisInfo[] axis = new IAxisInfo[1];
         axis[0] = AxisInfo.X;
         _csFactory.CreateFittedCoordinateSystem("name", null, "aa", axis);
         Assertion.Fail("Should throw a not implemented exception.");
     }
     catch (NotImplementedException)
     {
     }
 }