about summary refs log tree commit diff
path: root/main_test.go
blob: 35231c61430cb8ba80001a404cefd2cd42bcb2d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package main

import "testing"

func Test_main(t *testing.T) {
	tests := []struct {
		name string
	}{
		// TODO: Add test cases.
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			main()
		})
	}
}