public void IsLeftAssociateTest()
 {
     Expression operand1 = new DummyExpression(); // TODO: Initialize to an appropriate value
     Expression operand2 = new DummyExpression(); // TODO: Initialize to an appropriate value
     PowerExpression target = new PowerExpression(operand1, operand2); // TODO: Initialize to an appropriate value
     bool expected = false; // TODO: Initialize to an appropriate value
     bool actual;
     actual = target.IsLeftAssociate();
     Assert.AreEqual(expected, actual);
 }