public void Constructor_ShouldParseOutFromToXml()
		{
			const string email = "*****@*****.**";
			const string name = "Peter";
			const string organization = "Institut";
			const string title = "Walker";
			const string country = "Denmark";

			var profile1 = new Profile(email, name, organization, title, country);
			var profile2 = new Profile(profile1.ToXml());

			Assert.AreEqual(email, profile2.Email);
			Assert.AreEqual(name, profile2.Name);
			Assert.AreEqual(organization, profile2.Organization);
			Assert.AreEqual(title, profile2.Title);
			Assert.AreEqual(country, profile2.Country);
		}