(t *testing.T)
| 60 | } |
| 61 | |
| 62 | func TestMultiplication1(t *testing.T) { |
| 63 | t12_11_3 := NewClassGroup(big.NewInt(12), big.NewInt(11), big.NewInt(3)) |
| 64 | t93_109_32 := NewClassGroup(big.NewInt(93), big.NewInt(109), big.NewInt(32)) |
| 65 | |
| 66 | a := t12_11_3.Multiply(t93_109_32) |
| 67 | require.Equal(t, a, NewClassGroup(big.NewInt(1), big.NewInt(1), big.NewInt(6)), "they should be equal") |
| 68 | } |
| 69 | |
| 70 | func TestMultiplication2(t *testing.T) { |
| 71 | t12_11_3 := NewClassGroup(big.NewInt(12), big.NewInt(11), big.NewInt(3)) |
nothing calls this directly
no test coverage detected