Exemplo n.º 1
0
        public void AdapterTest()
        {
            actionTableAdapter target = new actionTableAdapter(); // 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()
        {
            actionTableAdapter target = new actionTableAdapter();  // TODO: Initialize to an appropriate value

            AutoWebAgentDBDataSet.actionDataTable expected = null; // TODO: Initialize to an appropriate value
            AutoWebAgentDBDataSet.actionDataTable actual;
            actual = target.GetData();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemplo n.º 3
0
        public void ConnectionTest()
        {
            actionTableAdapter target   = new actionTableAdapter(); // 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()
        {
            actionTableAdapter target = new actionTableAdapter(); // 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()
        {
            actionTableAdapter    target  = new actionTableAdapter(); // 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()
        {
            actionTableAdapter target = new actionTableAdapter(); // 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 void InsertTest()
        {
            actionTableAdapter target = new actionTableAdapter(); // 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
            Nullable <int>     p3     = new Nullable <int>();     // 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.");
        }
Exemplo n.º 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();
        }
Exemplo n.º 9
0
        public void actionTableAdapterConstructorTest()
        {
            actionTableAdapter target = new actionTableAdapter();

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