amocrm/pkg/timer/timer_test.go
2024-12-03 16:22:05 +03:00

15 lines
176 B
Go

package timer
import (
"fmt"
"testing"
)
func TestTimer(t *testing.T) {
result := CalculateTime(4)
fmt.Println(result)
result = CalculateTime(3)
fmt.Println(result)
}