protected override void AfterSetup()
		{
			var switzerland = new Country {Name = "Switzerland"};
			var france = new Country {Name = "France"};
			var swaziland = new Country {Name = "Swaziland"};

			Session.Save(switzerland);
			Session.Save(france);
			Session.Save(swaziland);
			Session.Flush();
			Session.Clear();
		}
		protected override void AfterSetup()
		{
			var switzerland = new Country {Name = "Switzerland"};
			Session.Save(new Address
			{
				AddressLine = "Geneve",
				Country = switzerland
			});
			Session.Save(new Address
			{
				AddressLine = "Lausanne",
				Country = switzerland
			});

			Session.Flush();
			Session.Clear();
		}