public void SquareRootTest() { BigInt e = BigInt.ValueOf(5); BigInt pT = BigInt.ValueOf(11); BigInt aT = BigInt.ValueOf(3); Fp fT = new Fp(pT); Assert.AreEqual(e, fT.SquareRoot(aT)); }