public void GetImageProperties_NoFile_EmptyResult()
        {
            var    runExifTool     = new RunExifTool("a", true);
            string imageProperties = runExifTool.GetImageProperties();

            Assert.IsTrue(string.IsNullOrEmpty(imageProperties));
        }
        public void GetImageProperties_FileExists_Success()
        {
            string imageFileName   = TestingImagesNames.LeahOnShip1957;
            var    runExifTool     = new RunExifTool(imageFileName, false);
            string imageProperties = runExifTool.GetImageProperties();

            Assert.IsNotNull(imageProperties);
        }