mirror of
https://github.com/taigrr/most-specific-period.git
synced 2026-04-02 03:38:41 -07:00
21 lines
335 B
Go
21 lines
335 B
Go
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) {
|
|
|
|
})
|
|
}
|
|
}
|