Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Side by Side Diff: build_scheduler/go/db/memory_test.go

Issue 2296763008: [task scheduler] Move files from build_scheduler/ to task_scheduler/ (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build_scheduler/go/db/memory.go ('k') | build_scheduler/go/db/modified_tasks.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 package db
2
3 import "testing"
4
5 func TestInMemoryDB(t *testing.T) {
6 TestDB(t, NewInMemoryDB())
7 }
8
9 func TestInMemoryTooManyUsers(t *testing.T) {
10 TestTooManyUsers(t, NewInMemoryDB())
11 }
12
13 func TestInMemoryConcurrentUpdate(t *testing.T) {
14 TestConcurrentUpdate(t, NewInMemoryDB())
15 }
16
17 func TestInMemoryUpdateWithRetries(t *testing.T) {
18 TestUpdateWithRetries(t, NewInMemoryDB())
19 }
OLDNEW
« no previous file with comments | « build_scheduler/go/db/memory.go ('k') | build_scheduler/go/db/modified_tasks.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698