コード例 #1
0
ファイル: SQLiteTests.cs プロジェクト: inickvel/SqlCeToolbox
 public void TestGetAllViewColumns()
 {
     var list = new List<Column>();
     using (IRepository repo = new SQLiteRepository(infoConnectionString))
     {
         list = repo.GetAllViewColumns();
     }
     Assert.IsTrue(list.Count == 11);
 }
コード例 #2
0
    public void TestGetAllViewColumns()
    {
        var list = new List <Column>();

        using (IRepository repo = new SQLiteRepository(infoConnectionString))
        {
            list = repo.GetAllViewColumns();
        }
        Assert.IsTrue(list.Count == 11);
    }
コード例 #3
0
ファイル: SQLiteTests.cs プロジェクト: johbln/SqlCeToolbox
    public void TestGetAllViewColumnsBug()
    {
        var list = new List <Column>();

        using (IRepository repo = new SQLiteRepository(viewColBugConnectionString))
        {
            list = repo.GetAllViewColumns();
        }
        Assert.AreEqual(5, list.Count);
    }