protected static void ResetComponents()
		{
			client = null;
			fileSystem = null;
			factory = null;
			storage = null;
		}
		protected static void InitializeComponents()
		{
			client = new Mock<AmazonS3Client>();
			fileSystem = new Mock<IFileSystem>();
			factory = new AmazonS3RequestFactory(Bucket);
			storage = new AmazonS3Storage(client.Object, factory, fileSystem.Object, Bucket);
		}