feat: add unit test

This commit is contained in:
2019-09-20 01:24:50 +02:00
parent ced985da52
commit 779cd1da6e
7 changed files with 270 additions and 6 deletions

14
main_test.go Normal file
View File

@@ -0,0 +1,14 @@
package main
import "testing"
func Test_main(t *testing.T) {
tests := []struct {
name string
}{
// TODO: Add test cases.
}
for range tests {
main()
}
}