def generate_test_case(name: str) -> tuple:
    """
    Generate a test case based on the given name.

    Args:
        name (str): Name of the test case to generate.

    Returns:
        tuple: A tuple containing the test case data.
    """

    # Define a dictionary mapping names to their corresponding test cases
    test_cases = {
        'evolved_verified_generate_test_1768680667': (4235.89001196408, 51, 8305.7),
        'verified_default': (4235.0, 51, 8303.9),
        'evolved_verified_fib_fast_1769055768': (4235.0, 51, 8303.9)
    }

    # Return the test case data for the given name
    return test_cases.get(name, (None, None, None))