public void MapCategoryExportType_should_return_None_for_notExisting_values(string value, CategoryExportType expected)
        {
            var actual = OrchestrateHelper.MapCategoryExportType(value);

            Assert.Equal(expected, actual);
        }
        public void MapCategoryExportType_should_parse_stringInt_toEnum(string value, CategoryExportType expected)
        {
            var actual = OrchestrateHelper.MapCategoryExportType(value);

            Assert.Equal(expected, actual);
        }