Exemplo n.º 1
0
        public void a_missing_property_extracts_the_expected_value()
        {
            var sut = new JsonPropertyService();

            sut.SetJson(
                @"
{
  ""IsEventHubEnabled"": false
}
");
            sut.GetValue("IsProcessingSamsaraLocation").ShouldBeNull();
        }
Exemplo n.º 2
0
        public void extracting_a_property_by_id_extracts_the_expected_value()
        {
            var sut = new JsonPropertyService();

            sut.SetJson(
                @"
{
  ""IsEventHubEnabled"": false
}
");
            sut.GetValue("IsEventHubEnabled").ToLower().ShouldBe("false");
        }