Unit test mistakes corrected
This commit is contained in:
parent
b31f393f65
commit
1ea4e00904
|
@ -1432,9 +1432,9 @@ Odd
|
||||||
const string format = @"{{#eq Value _Yesterday}}Yes!{{/eq}}";
|
const string format = @"{{#eq Value _Yesterday}}Yes!{{/eq}}";
|
||||||
Generator generator = compiler.Compile(format);
|
Generator generator = compiler.Compile(format);
|
||||||
|
|
||||||
string actual = generator.Render(new {ViewId = "Yesterday"});
|
string actual = generator.Render(new {Value = "Yesterday"});
|
||||||
string expected = "Yes!";
|
string expected = "Yes!";
|
||||||
Assert.AreEqual(expected, actual, "The context variable was not toggled.");
|
Assert.AreEqual(expected, actual, "Value field didn't work");
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestMethod]
|
[TestMethod]
|
||||||
|
@ -1444,13 +1444,27 @@ Odd
|
||||||
Generator generator = compiler.Compile(format);
|
Generator generator = compiler.Compile(format);
|
||||||
|
|
||||||
|
|
||||||
|
string actual = generator.Render(new { Value = "123.3231" });
|
||||||
|
string expected = "Yes!";
|
||||||
|
Assert.AreEqual(expected, actual, "Value field didn't work");
|
||||||
|
}
|
||||||
|
|
||||||
|
[TestMethod]
|
||||||
|
public void TestCompile_NonEqualNumericValue() {
|
||||||
|
FormatCompiler compiler = new FormatCompiler();
|
||||||
|
const string format = @"{{#eq Value _123.3232}}Yes!{{/eq}}";
|
||||||
|
Generator generator = compiler.Compile(format);
|
||||||
|
|
||||||
|
|
||||||
string actual = generator.Render(new { Value = "123.3231" });
|
string actual = generator.Render(new { Value = "123.3231" });
|
||||||
string expected = "";
|
string expected = "";
|
||||||
Assert.AreEqual(expected, actual, "The context variable was not toggled.");
|
Assert.AreEqual(expected, actual, "Value field didn't work");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue