public void AdapterTest()
        {
            websiteTableAdapter target = new websiteTableAdapter(); // TODO: Initialize to an appropriate value
            SqlCeDataAdapter    actual;

            actual = target.Adapter;
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void GetDataTest()
        {
            websiteTableAdapter target = new websiteTableAdapter(); // TODO: Initialize to an appropriate value

            AutoWebAgentDBDataSet.websiteDataTable expected = null; // TODO: Initialize to an appropriate value
            AutoWebAgentDBDataSet.websiteDataTable actual;
            actual = target.GetData();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void ConnectionTest()
        {
            websiteTableAdapter target   = new websiteTableAdapter(); // TODO: Initialize to an appropriate value
            SqlCeConnection     expected = null;                      // TODO: Initialize to an appropriate value
            SqlCeConnection     actual;

            target.Connection = expected;
            actual            = target.Connection;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void DeleteTest()
        {
            websiteTableAdapter target = new websiteTableAdapter(); // TODO: Initialize to an appropriate value
            int p1       = 0;                                       // TODO: Initialize to an appropriate value
            int expected = 0;                                       // TODO: Initialize to an appropriate value
            int actual;

            actual = target.Delete(p1);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void UpdateTest3()
        {
            websiteTableAdapter   target  = new websiteTableAdapter(); // TODO: Initialize to an appropriate value
            AutoWebAgentDBDataSet dataSet = null;                      // TODO: Initialize to an appropriate value
            int expected = 0;                                          // TODO: Initialize to an appropriate value
            int actual;

            actual = target.Update(dataSet);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void ClearBeforeFillTest()
        {
            websiteTableAdapter target = new websiteTableAdapter(); // TODO: Initialize to an appropriate value
            bool expected = false;                                  // TODO: Initialize to an appropriate value
            bool actual;

            target.ClearBeforeFill = expected;
            actual = target.ClearBeforeFill;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void InsertTest()
        {
            websiteTableAdapter target = new websiteTableAdapter(); // TODO: Initialize to an appropriate value
            string p1       = string.Empty;                         // TODO: Initialize to an appropriate value
            string p2       = string.Empty;                         // TODO: Initialize to an appropriate value
            int    expected = 0;                                    // TODO: Initialize to an appropriate value
            int    actual;

            actual = target.Insert(p1, p2);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
示例#8
0
        public DAL()
        {
            IsInitialized = false;

            actionAdapter      = new actionTableAdapter();
            conditionAdapter   = new conditionTableAdapter();
            elementAdapter     = new elementTableAdapter();
            recognitionAdapter = new recognitionTableAdapter();
            scriptAdapter      = new scriptTableAdapter();
            stepAdapter        = new stepTableAdapter();
            usersAdapter       = new usersTableAdapter();
            websiteAdapter     = new websiteTableAdapter();
            queries            = new QueriesTableAdapter();
            validationAdapter  = new validationTableAdapter();
            DB = new AutoWebAgentDBDataSet();
        }
        public void websiteTableAdapterConstructorTest()
        {
            websiteTableAdapter target = new websiteTableAdapter();

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