public void FindAndStoreBinaryWithoutExtension()
        {
            string p = Path.Combine(Path.GetTempPath(), "DD4TMockWebRoot");

            if (!Directory.Exists(p))
            {
                Directory.CreateDirectory(p);
            }
            bool result = BinaryFactory.FindAndStoreBinary("/media/image", Path.Combine(p, "image"));

            Assert.IsTrue(result, "FindAndStoreBinary returned false");
            Assert.IsTrue(File.Exists(Path.Combine(p, "image")), "binary file was not created properly");
        }