(t *testing.T)
| 81 | } |
| 82 | |
| 83 | func TestMultiplication3(t *testing.T) { |
| 84 | t12_11_3 := NewClassGroup(big.NewInt(12), big.NewInt(11), big.NewInt(3)) |
| 85 | t93_109_32 := NewClassGroup(big.NewInt(93), big.NewInt(109), big.NewInt(32)) |
| 86 | |
| 87 | a := t12_11_3.Multiply(t93_109_32) |
| 88 | require.Equal(t, a, NewClassGroup(big.NewInt(1), big.NewInt(1), big.NewInt(6)), "they should be equal") |
| 89 | } |
| 90 | |
| 91 | func TestMultiplication4(t *testing.T) { |
| 92 | x := NewClassGroup(big.NewInt(-565721958), big.NewInt(-740), big.NewInt(4486780496)) |
nothing calls this directly
no test coverage detected