System.Data.SQLite

Check-in [66703fe6d8]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Minor UI enhancement when running the legacy test suite automatically.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 66703fe6d8b05000922f146df91ddc59c22528ac
User & Date: mistachkin 2015-12-10 05:57:43.395
Context
2015-12-12
04:49
Fix typo in SQLite interop project files (for VS 20XX) that impacts customization of INTEROP_LIBRARY_DEPENDENCIES. check-in: 70131d4f23 user: mistachkin tags: trunk
2015-12-11
23:10
Add test case for ticket [5251bd0878]. check-in: 5f7617eb79 user: mistachkin tags: tkt-5251bd0878
2015-12-10
05:57
Minor UI enhancement when running the legacy test suite automatically. check-in: 66703fe6d8 user: mistachkin tags: trunk
05:37
Final updates for release 1.0.99.0. check-in: 469bee6065 user: mistachkin tags: trunk, release, release-1.0.99.0
Changes
Unified Diff Ignore Whitespace Patch
Changes to test/TestCasesDialog.cs.
1
2
3
4
5
6
7
8
9
10
11
/********************************************************
 * ADO.NET 2.0 Data Provider for SQLite Version 3.X
 * Written by Robert Simpson (robert@blackcastlesoft.com)
 * 
 * Released to the public domain, use at your own risk!
 ********************************************************/

using System;
using System.Collections.Generic;
using System.Data;
using System.Drawing;



|







1
2
3
4
5
6
7
8
9
10
11
/********************************************************
 * ADO.NET 2.0 Data Provider for SQLite Version 3.X
 * Written by Robert Simpson (robert@blackcastlesoft.com)
 *
 * Released to the public domain, use at your own risk!
 ********************************************************/

using System;
using System.Collections.Generic;
using System.Data;
using System.Drawing;
59
60
61
62
63
64
65










66
67
68
69
70
71
72
      {
        ToolStripMenuItem item = (ToolStripMenuItem)testMenu.DropDownItems.Add(pair.Key, null, new EventHandler(_tests_Clicked));
        item.Checked = true;
        item.CheckOnClick = true;
      }

      this.Shown += new EventHandler(TestCasesDialog_Shown);










    }

    private StringBuilder GridToText()
    {
        StringBuilder result = new StringBuilder();

        foreach (DataGridViewRow row in _grid.Rows)







>
>
>
>
>
>
>
>
>
>







59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
      {
        ToolStripMenuItem item = (ToolStripMenuItem)testMenu.DropDownItems.Add(pair.Key, null, new EventHandler(_tests_Clicked));
        item.Checked = true;
        item.CheckOnClick = true;
      }

      this.Shown += new EventHandler(TestCasesDialog_Shown);
      this.FormClosing += new FormClosingEventHandler(TestCasesDialog_FormClosing);
    }

    private void TestCasesDialog_FormClosing(
        object sender,
        FormClosingEventArgs e
        )
    {
        if (_autoRun && (e.CloseReason == CloseReason.UserClosing))
            e.Cancel = true;
    }

    private StringBuilder GridToText()
    {
        StringBuilder result = new StringBuilder();

        foreach (DataGridViewRow row in _grid.Rows)