public void OptionService_GetCategoryOptions_ShouldTypeListOfSelectListItems()
        {
            var result = _optionService.GetCategoryOptions();

            result.Should().BeOfType <List <SelectListItem> >();
        }