public void RETURN_TRUE_IF_HAVE_REQUIRED_PERMISSIONS_TO_FILESTORE()
        {
            IConfiguration configuration = CommonMethods.CreateConfigurationWithFileStorePath();
            var            fileStorePath = configuration.GetValue <string>("DefaultFileStorePath");

            var objectUnderTest = new ValidatorHelper();
            var result          = objectUnderTest.HaveRequiredPermissionsToFileStore(fileStorePath);

            Assert.IsNotNull(result);
            Assert.IsTrue(result);
        }