public void LoadFilesThrowsInvalidOperationException164()
 {
     SQLDBLoader sQLDBLoader;
     int i;
     sQLDBLoader = new SQLDBLoader((string)null);
     i = this.LoadFiles(sQLDBLoader);
 }
 public void GetFilesTest25604()
 {
     SQLDBLoader sQLDBLoader;
     int i;
     sQLDBLoader = new SQLDBLoader("\0\0");
     i = this.GetFilesTest(sQLDBLoader);
     Assert.AreEqual<int>(-2, i);
     Assert.IsNotNull((object)sQLDBLoader);
 }
 public void InsertDataThrowsFormatException282()
 {
     SQLDBLoader sQLDBLoader;
     bool b;
     sQLDBLoader = new SQLDBLoader((string)null);
     node s0 = new node();
     s0.id = "-\0";
     s0.label = (string)null;
     s0.adjacentNodes = (nodeAdjacentNodesID[])null;
     b = this.InsertData(sQLDBLoader, s0);
 }
 public void InsertData705()
 {
     SQLDBLoader sQLDBLoader;
     bool b;
     sQLDBLoader = new SQLDBLoader((string)null);
     node s0 = new node();
     s0.id = (string)null;
     s0.label = (string)null;
     s0.adjacentNodes = (nodeAdjacentNodesID[])null;
     b = this.InsertData(sQLDBLoader, s0);
 }
Exemplo n.º 5
0
        internal int Load(string inputPath)
        {
            int results = 0;
            _path = inputPath;

            SQLDBLoader load = new SQLDBLoader(_path);

            results = load.GetFiles();

            if (results == LoadConstants.Success)
            {
                results = load.LoadFiles();
            }

            load.Close();

            return results;
        }
 public void CloseTestThrowsInvalidOperationException367()
 {
     SQLDBLoader sQLDBLoader;
     sQLDBLoader = new SQLDBLoader((string)null);
     this.CloseTest(sQLDBLoader);
 }
 public void InsertDataThrowsNullReferenceException612()
 {
     SQLDBLoader sQLDBLoader;
     bool b;
     sQLDBLoader = new SQLDBLoader((string)null);
     b = this.InsertData(sQLDBLoader, (node)null);
 }
 public void InsertDataThrowsInvalidOperationException91()
 {
     SQLDBLoader sQLDBLoader;
     bool b;
     sQLDBLoader = new SQLDBLoader((string)null);
     node s0 = new node();
     s0.id = "0";
     s0.label = (string)null;
     s0.adjacentNodes = (nodeAdjacentNodesID[])null;
     b = this.InsertData(sQLDBLoader, s0);
 }
Exemplo n.º 9
0
 internal SQLDBLoader ConstructorTest01(string inputPath)
 {
     SQLDBLoader target = new SQLDBLoader(inputPath);
     return target;
     // TODO: add assertions to method SQLDBLoaderTest.ConstructorTest01(String)
 }
Exemplo n.º 10
0
 internal SQLDBLoader ConstructorTest()
 {
     SQLDBLoader target = new SQLDBLoader();
     return target;
     // TODO: add assertions to method SQLDBLoaderTest.ConstructorTest()
 }
 public void GetFilesTest31001()
 {
     SQLDBLoader sQLDBLoader;
     int i;
     sQLDBLoader = new SQLDBLoader("");
     i = this.GetFilesTest(sQLDBLoader);
     Assert.AreEqual<int>(-1, i);
     Assert.IsNotNull((object)sQLDBLoader);
 }