public void _1_1_GeneratePathFindDropdownList()
    {
        List <Dropdown.OptionData> pathFindDropdownOptionsList = PathFindDropdownListGenerator.GeneratePathFindDropdownList();

        int counter = 0;

        foreach (EPathFindAlgorithms pathFindAlgorithm in Enum.GetValues(typeof(EPathFindAlgorithms)))
        {
            Assert.AreEqual(pathFindDropdownOptionsList[counter].text, pathFindAlgorithm.ToString());
            counter++;
        }
    }
 public List <Dropdown.OptionData> GeneratePathFindDropdownList()
 {
     return(PathFindDropdownListGenerator.GeneratePathFindDropdownList());
 }