public void ToStringTest()
        {
            clsATCProjection target   = new clsATCProjection(); // TODO: Initialize to an appropriate value
            string           expected = string.Empty;           // TODO: Initialize to an appropriate value
            string           actual;

            actual = target.ToString();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void DefaultsTest()
        {
            clsATCProjection target   = new clsATCProjection(); // TODO: Initialize to an appropriate value
            clsATCProjection expected = null;                   // TODO: Initialize to an appropriate value
            clsATCProjection actual;

            target.Defaults = expected;
            actual          = target.Defaults;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void clsATCProjectionConstructorTest()
        {
            clsATCProjection target = new clsATCProjection();

            Assert.Inconclusive("TODO: Implement code to verify target");
        }