Ejemplo n.º 1
0
        /// <summary>
        ///A test for BaseGenericBLL`1 Constructor
        ///</summary>
        public void BaseGenericBLLConstructorTest1Helper <T>()
            where T : EntityObject
        {
            string             entitySetName = string.Empty; // TODO: Initialize to an appropriate value
            BaseGenericBLL <T> target        = new BaseGenericBLL <T>(entitySetName);

            Assert.Inconclusive("TODO: Implement code to verify target");
        }
Ejemplo n.º 2
0
        /// <summary>
        ///A test for GetList
        ///</summary>
        public void GetListTest1Helper <T>()
            where T : EntityObject
        {
            string             entitySetName = string.Empty;                          // TODO: Initialize to an appropriate value
            BaseGenericBLL <T> target        = new BaseGenericBLL <T>(entitySetName); // TODO: Initialize to an appropriate value
            List <T>           expected      = null;                                  // TODO: Initialize to an appropriate value
            List <T>           actual;

            actual = target.GetList();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }