public void EqualsTest3()
 {
     Polynomial testPoly = new Polynomial(1, 15, 0, 45, 1, 0, 14, 3, 0);
     var expected = testPoly.Equals(poly1);
     Assert.AreEqual(expected, true);
 }