public void ThenIWantNullWhenTheValueIsNotStoredWithCompression()
		{
			// Arrange
			var document = new Document();

			// Act
			var value = document.GetStringWithCompressionOrNull("Foo");

			// Assert
			Assert.Null(value);
		}