Exemplo n.º 1
0
 public void EvaluateTest()
 {
     IExpression leftExpr = new Variable("whatever",typeof(decimal),Convert.ToDecimal(11.34)); // TODO: Initialize to an appropriate value
     IExpression rightExpr = new StrategyAnalyzer.DataClass.TradingRuleDefinitions.Decimal(Convert.ToDecimal(11.34)); // TODO: Initialize to an appropriate value
     Equal target = new Equal(leftExpr, rightExpr); // TODO: Initialize to an appropriate value
     bool expected = true; // TODO: Initialize to an appropriate value
     bool actual;
     actual = target.Evaluate(new DateTime());
     Assert.AreEqual(expected, actual);
    // Assert.Inconclusive("Verify the correctness of this test method.");
 }