コード例 #1
0
        public void SQLiteWrapperClassConstructorTest1()
        {
            string pInputFile = string.Empty; // TODO: Initialize to an appropriate value

            PIS.Ground.Core.SQLite.SQLiteWrapperClass target = new PIS.Ground.Core.SQLite.SQLiteWrapperClass(pInputFile);
            Assert.Inconclusive("TODO: Implement code to verify target");
        }
コード例 #2
0
 public void mExecuteTransactionQueryTest()
 {
     PIS.Ground.Core.SQLite.SQLiteWrapperClass target  = new PIS.Ground.Core.SQLite.SQLiteWrapperClass(); // TODO: Initialize to an appropriate value
     System.Collections.Generic.List <string>  plstSql = null;                                            // TODO: Initialize to an appropriate value
     target.mExecuteTransactionQuery(plstSql);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
コード例 #3
0
        public void mClearTableTest()
        {
            PIS.Ground.Core.SQLite.SQLiteWrapperClass target = new PIS.Ground.Core.SQLite.SQLiteWrapperClass(); // TODO: Initialize to an appropriate value
            string pTable = string.Empty;                                                                       // TODO: Initialize to an appropriate value

            target.mClearTable(pTable);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
コード例 #4
0
        public void mExecuteNonQueryTest()
        {
            PIS.Ground.Core.SQLite.SQLiteWrapperClass target = new PIS.Ground.Core.SQLite.SQLiteWrapperClass(); // TODO: Initialize to an appropriate value
            string pSql = string.Empty;                                                                         // TODO: Initialize to an appropriate value

            target.mExecuteNonQuery(pSql);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
コード例 #5
0
        public void mInsertTest()
        {
            PIS.Ground.Core.SQLite.SQLiteWrapperClass target = new PIS.Ground.Core.SQLite.SQLiteWrapperClass(); // TODO: Initialize to an appropriate value
            string pTableName = string.Empty;                                                                   // TODO: Initialize to an appropriate value

            System.Collections.Generic.Dictionary <string, string> pData = null;                                // TODO: Initialize to an appropriate value
            target.mInsert(pTableName, pData);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
コード例 #6
0
        public void mExecuteQueryTest()
        {
            PIS.Ground.Core.SQLite.SQLiteWrapperClass target = new PIS.Ground.Core.SQLite.SQLiteWrapperClass(); // TODO: Initialize to an appropriate value
            string pSql = string.Empty;                                                                         // TODO: Initialize to an appropriate value

            System.Data.DataTable pDt         = null;                                                           // TODO: Initialize to an appropriate value
            System.Data.DataTable pDtExpected = null;                                                           // TODO: Initialize to an appropriate value
            target.mExecuteQuery(pSql, ref pDt);
            Assert.AreEqual(pDtExpected, pDt);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
コード例 #7
0
        public void mExecuteScalarTest()
        {
            PIS.Ground.Core.SQLite.SQLiteWrapperClass target = new PIS.Ground.Core.SQLite.SQLiteWrapperClass(); // TODO: Initialize to an appropriate value
            string pSql           = string.Empty;                                                               // TODO: Initialize to an appropriate value
            string pValue         = string.Empty;                                                               // TODO: Initialize to an appropriate value
            string pValueExpected = string.Empty;                                                               // TODO: Initialize to an appropriate value

            target.mExecuteScalar(pSql, ref pValue);
            Assert.AreEqual(pValueExpected, pValue);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
コード例 #8
0
        public void mEntryExistsTest()
        {
            PIS.Ground.Core.SQLite.SQLiteWrapperClass target = new PIS.Ground.Core.SQLite.SQLiteWrapperClass(); // TODO: Initialize to an appropriate value
            string pTable = string.Empty;                                                                       // TODO: Initialize to an appropriate value

            System.Collections.Generic.Dictionary <string, string> pEntry = null;                               // TODO: Initialize to an appropriate value
            bool expected = false;                                                                              // TODO: Initialize to an appropriate value
            bool actual;

            actual = target.mEntryExists(pTable, pEntry);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
コード例 #9
0
 public void SQLiteWrapperClassConstructorTest()
 {
     System.Collections.Generic.Dictionary <string, string> pConnectionOpts = null; // TODO: Initialize to an appropriate value
     PIS.Ground.Core.SQLite.SQLiteWrapperClass target = new PIS.Ground.Core.SQLite.SQLiteWrapperClass(pConnectionOpts);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
コード例 #10
0
 public void SQLiteWrapperClassConstructorTest2()
 {
     PIS.Ground.Core.SQLite.SQLiteWrapperClass target = new PIS.Ground.Core.SQLite.SQLiteWrapperClass();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
コード例 #11
0
 public void DisposeTest1()
 {
     PIS.Ground.Core.SQLite.SQLiteWrapperClass target = new PIS.Ground.Core.SQLite.SQLiteWrapperClass(); // TODO: Initialize to an appropriate value
     target.Dispose();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }