(t *testing.T)
| 35 | } |
| 36 | |
| 37 | func TestSQLite(t *testing.T) { |
| 38 | db := testdb.SQLiteDB(sqliteDBFile) |
| 39 | ta := TestAccessor{ |
| 40 | Accessor: NewAccessor(db), |
| 41 | DB: db, |
| 42 | } |
| 43 | testEverything(ta, t) |
| 44 | } |
| 45 | |
| 46 | // roughlySameTime decides if t1 and t2 are close enough. |
| 47 | func roughlySameTime(t1, t2 time.Time) bool { |
nothing calls this directly
no test coverage detected
searching dependent graphs…