public void ShouldConvertToBool()
        {
            //Prepare
            EnumToBooleanConverter target = new EnumToBooleanConverter();
            PathAlgorithm algo = PathAlgorithm.BFS;

            //Act
            bool result1 = (bool)target.Convert(algo, null, PathAlgorithm.BFS, null);
            bool result2 = (bool)target.Convert(algo, null, PathAlgorithm.AStar, null);

            //Verify
            Assert.IsTrue(result1);
        }