def test__has_sufficient_walkscore(sample_listing: dict,
                                   walkscore_test_value: int,
                                   expected: bool) -> None:
    """Tests to see if the minimum walkscore threshold is satisfied.

    Args:
        sample_listing (dict): Listing with walkscore information to test against
        walkscore_test_value (int): Minimum acceptable walkscore
        expected (bool): Expected outcome
    """
    assert (SmartSearch._has_sufficient_walkscore(
        sample_listing, walkscore_test_value) == expected)