Exemplo n.º 1
0
        public void AdapterTest()
        {
            conditionTableAdapter target = new conditionTableAdapter(); // TODO: Initialize to an appropriate value
            SqlCeDataAdapter      actual;

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

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

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