add rough v1

This commit is contained in:
2022-02-28 15:56:56 -08:00
parent 72c18dba1a
commit 1946a93b80
3 changed files with 86 additions and 4 deletions

View File

@@ -1,9 +1,20 @@
package msp
import (
"fmt"
"testing"
)
//(periods ...Period) (id string, err error) {
func TestMostSpecificPeriod(t *testing.T) {
testCases := []struct {
testID string
result string
Periods []Period
}{{testID: "test"}}
for _, tc := range testCases {
t.Run(fmt.Sprintf("%s", tc.testID), func(t *testing.T) {
})
}
}