Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Updates to the test app |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
7bfffba74e3db94c6ec0f30fcd020ea0 |
User & Date: | rmsimpson 2010-08-11 16:15:09.000 |
Context
2010-08-11
| ||
16:17 | Updates for take and skip check-in: fc483e780a user: rmsimpson tags: sourceforge | |
16:15 | Updates to the test app check-in: 7bfffba74e user: rmsimpson tags: sourceforge | |
16:15 | Code merge SQLite 3.7.0.1 check-in: 70c0651802 user: rmsimpson tags: sourceforge | |
Changes
Changes to test/TestCases.cs.
︙ | ︙ | |||
69 70 71 72 73 74 75 | [Test(Sequence=1)] internal string VersionTest() { CheckSQLite(); string[] version = _cnn.ServerVersion.Split('.'); if (Convert.ToInt32(version[0]) < 3 | | | | 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | [Test(Sequence=1)] internal string VersionTest() { CheckSQLite(); string[] version = _cnn.ServerVersion.Split('.'); if (Convert.ToInt32(version[0]) < 3 || (Convert.ToInt32(version[0]) == 3 && Convert.ToInt32(version[1]) < 6) || (Convert.ToInt32(version[1]) == 6 && Convert.ToInt32(version[2]) < 1) ) throw new Exception(String.Format("SQLite Engine is {0}. Minimum supported version is 3.6.1", _cnn.ServerVersion)); return String.Format("SQLite Engine is {0}", _cnn.ServerVersion); } //[Test(Sequence = 1)] internal void ParseTest() |
︙ | ︙ |