void
test_effective_user (void)
{
    cut_assert_equal_string(
        MILTER_MANAGER_DEFAULT_EFFECTIVE_USER,
        milter_manager_configuration_get_effective_user(config));
    milter_manager_configuration_set_effective_user(config, "nobody");
    cut_assert_equal_string(
        "nobody",
        milter_manager_configuration_get_effective_user(config));
}
void
test_effective_user (void)
{
    cut_assert_equal_string(
        NULL,
        milter_manager_configuration_get_effective_user(config));
    milter_manager_configuration_set_effective_user(config, "nobody");
    cut_assert_equal_string(
        "nobody",
        milter_manager_configuration_get_effective_user(config));
}