Files
codekata-golang/35_circular_primes/main_test.go
2020-11-05 09:43:53 +08:00

105 lines
1.3 KiB
Go

package main
import (
"reflect"
"testing"
)
func Test_isPrime(t *testing.T) {
type args struct {
n int
}
tt := []struct {
name string
args args
want bool
}{
{
"1",
args{1},
false,
},
{
"2",
args{2},
true,
},
{
"4",
args{4},
false,
},
{
"17",
args{17},
true,
},
{
"37",
args{37},
true,
},
{
"73",
args{73},
true,
},
{
"13 * 3 * 5 * 5 * 17 * 31 * 737",
args{3 * 3 * 5 * 5 * 17 * 31 * 73},
false,
},
{
"large_one",
args{2876*2876 - 63*2876 + 977},
false,
},
}
for _, tc := range tt {
t.Run(tc.name, func(t *testing.T) {
if got := isPrime(tc.args.n); got != tc.want {
t.Errorf("isPrime() = %v, want %v", got, tc.want)
}
})
}
}
func Test_circularNumbersOf(t *testing.T) {
type args struct {
n int
}
tests := []struct {
name string
args args
want []int
}{
{
"197",
args{197},
[]int{197, 971, 719},
},
{
"19",
args{19},
[]int{19, 91},
},
{
"11",
args{11},
[]int{11},
},
{
"12345",
args{12345},
[]int{12345, 23451, 34512, 45123, 51234},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := circularNumbersOf(tt.args.n); !reflect.DeepEqual(got, tt.want) {
t.Errorf("circularNumbersOf() = %v, want %v", got, tt.want)
}
})
}
}