lllaetu-data/calendar_test.go
Arnas Udovicius 0807a646c0 Init
2022-06-01 14:17:56 +03:00

15 lines
256 B
Go

package lllaetu_data
import (
"fmt"
"reflect"
)
import "testing"
func TestTodayStruct(t *testing.T) {
today := Today()
s := reflect.ValueOf(&today).Elem()
if fmt.Sprint(s.Type()) != "lllaetu_data.Day" {
t.Error("Bad structure has been got.")
}
}