blob: 456699f412753bcdce12c64ec80cb915f897e65d [file] [log] [blame]
package memory
import (
"testing"
"go.skia.org/infra/go/testutils/unittest"
"go.skia.org/infra/task_scheduler/go/db"
)
// TestCommentBox checks that CommentBox correctly implements CommentDB.
func TestCommentBox(t *testing.T) {
unittest.SmallTest(t)
db.TestCommentDB(t, NewCommentBox())
}