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

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