Beispiel #1
0
        public void AdapterTest()
        {
            elementTableAdapter target = new elementTableAdapter(); // TODO: Initialize to an appropriate value
            SqlCeDataAdapter    actual;

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

            AutoWebAgentDBDataSet.elementDataTable expected = null; // TODO: Initialize to an appropriate value
            AutoWebAgentDBDataSet.elementDataTable actual;
            actual = target.GetData();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Beispiel #3
0
        public void ConnectionTest()
        {
            elementTableAdapter target   = new elementTableAdapter(); // 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.");
        }
Beispiel #4
0
        public void DeleteTest()
        {
            elementTableAdapter target = new elementTableAdapter(); // 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.");
        }
Beispiel #5
0
        public void UpdateTest3()
        {
            elementTableAdapter   target  = new elementTableAdapter(); // 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.");
        }
Beispiel #6
0
        public void ClearBeforeFillTest()
        {
            elementTableAdapter target = new elementTableAdapter(); // 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.");
        }
Beispiel #7
0
        public void InsertTest()
        {
            elementTableAdapter target = new elementTableAdapter(); // TODO: Initialize to an appropriate value
            string         p1          = string.Empty;              // TODO: Initialize to an appropriate value
            Nullable <int> p2          = new Nullable <int>();      // TODO: Initialize to an appropriate value
            string         p3          = string.Empty;              // TODO: Initialize to an appropriate value
            int            expected    = 0;                         // TODO: Initialize to an appropriate value
            int            actual;

            actual = target.Insert(p1, p2, p3);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Beispiel #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();
        }
Beispiel #9
0
        public void elementTableAdapterConstructorTest()
        {
            elementTableAdapter target = new elementTableAdapter();

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