public void ResultOfPolynomial()
 {
     Polynomial first = new Polynomial( 5, 7);         
     double expected = first.ResultOfPolynomial(2);
     Assert.AreEqual(19, expected);
 }