gosuki/browsers_test.go

20 lines
392 B
Go
Raw Normal View History

package main
import "testing"
func TestShutdown(t *testing.T) {
t.Error("abondon all db operations on Shutdown()")
}
func TestOnShutdownCloseWatcherThread(t *testing.T) {
t.Error("Close Watcher Thread on Shutdown")
}
func TestBrowserInterface(t *testing.T) {
t.Error("Check Browser required interface")
}
2018-12-01 17:17:01 +00:00
func TestInitBuffer(t *testing.T) {
t.Error("Create buffer and initialize")
}