blob: a755efd9af6aad068aa51f0f082b5c8b943064fe [file] [log] [blame]
package memory
import (
"testing"
"go.skia.org/infra/go/testutils/unittest"
"go.skia.org/infra/task_scheduler/go/db"
)
func TestModifiedTasksCh(t *testing.T) {
unittest.SmallTest(t)
d := NewInMemoryDB()
db.TestModifiedTasksCh(t, d)
}
func TestModifiedJobsCh(t *testing.T) {
unittest.SmallTest(t)
d := NewInMemoryDB()
db.TestModifiedJobsCh(t, d)
}
func TestModifiedTaskCommentsCh(t *testing.T) {
unittest.SmallTest(t)
d := NewInMemoryDB()
db.TestModifiedTaskCommentsCh(t, d)
}
func TestModifiedTaskSpecCommentsCh(t *testing.T) {
unittest.SmallTest(t)
d := NewInMemoryDB()
db.TestModifiedTaskSpecCommentsCh(t, d)
}
func TestModifiedCommitCommentsCh(t *testing.T) {
unittest.SmallTest(t)
d := NewInMemoryDB()
db.TestModifiedCommitCommentsCh(t, d)
}