public void TestBooleanHASProp()
{
string template = "<t.hasParkingSpot>"; // call hasParkingSpot
Template st = new Template(template);
st.Add("t", new User(32, "Ter"));
string expected = "true";
string result = st.Render();
Assert.AreEqual(expected, result);
}