Bamboo.Prevalence.XPath.Tests.XPathObjectNavigatorTest.TestIDictionaryProperties C# (CSharp) Method

TestIDictionaryProperties() private method

private TestIDictionaryProperties ( ) : void
return void
		public void TestIDictionaryProperties()
		{
			Customer customer = new Customer("Rodrigo", "Oliveira", new Address("Penny Lane", 64));
			customer.Properties["email"] = "[email protected]";

			XPathObjectNavigator navigator = new XPathObjectNavigator(customer);
			AssertEquals(customer.Properties["email"], navigator.SelectObject("Properties/email"));
		}