amocrm/pkg/timer/timer_test.go

15 lines
176 B
Go
Raw Normal View History

2024-12-03 13:22:05 +00:00
package timer
import (
"fmt"
"testing"
)
func TestTimer(t *testing.T) {
result := CalculateTime(4)
fmt.Println(result)
result = CalculateTime(3)
fmt.Println(result)
}