public void DTMColorTest()
 {
     ProjectParametersDTM target = new ProjectParametersDTM(); // TODO: Initialize to an appropriate value
     ProjectParametersDTMDTMColor expected = null; // TODO: Initialize to an appropriate value
     ProjectParametersDTMDTMColor actual;
     target.DTMColor = expected;
     actual = target.DTMColor;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void CoordSysTest()
 {
     ProjectParametersDTM target = new ProjectParametersDTM(); // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     target.CoordSys = expected;
     actual = target.CoordSys;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void ElongationTest()
 {
     ProjectParametersDTM target = new ProjectParametersDTM(); // TODO: Initialize to an appropriate value
     float expected = 0F; // TODO: Initialize to an appropriate value
     float actual;
     target.Elongation = expected;
     actual = target.Elongation;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void TextureFileTest()
 {
     ProjectParametersDTM target = new ProjectParametersDTM(); // TODO: Initialize to an appropriate value
     object expected = null; // TODO: Initialize to an appropriate value
     object actual;
     target.TextureFile = expected;
     actual = target.TextureFile;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void ProjectParametersDTMConstructorTest()
 {
     ProjectParametersDTM target = new ProjectParametersDTM();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void LastChangedTest()
 {
     ProjectParametersDTM target = new ProjectParametersDTM(); // TODO: Initialize to an appropriate value
     DateTime expected = new DateTime(); // TODO: Initialize to an appropriate value
     DateTime actual;
     target.LastChanged = expected;
     actual = target.LastChanged;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void GenerateVTFTest()
 {
     ProjectParametersDTM target = new ProjectParametersDTM(); // TODO: Initialize to an appropriate value
     bool expected = false; // TODO: Initialize to an appropriate value
     bool actual;
     target.GenerateVTF = expected;
     actual = target.GenerateVTF;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }