public void ShouldCreateCollections()
		{
			// Arrange
			using (SqlProvider provider = new SqlProvider(ConfigSettings.SqlConnectionString))
			{
				// Act
				provider.CreateCollection(typeof(Shipper));

				// Assert
				Assert.IsTrue(provider.CollectionExists(typeof(Shipper)));
				Assert.IsTrue(provider.CollectionExists(typeof(ShipperContact)));
				Assert.IsTrue(provider.CollectionExists(typeof(ShipperType)));
			}
		}