void expect_5_additional_ids_are_parallel_unique()
 {
     // when asking for 5 more, it will double the requested size if enough ids are not available
     expect_ids_are_parallel_unique(2*numInitialIdsToRequestPerProc);
 }
 void expect_5_additional_ids_are_parallel_unique()
 {
     expect_ids_are_parallel_unique(numInitialIdsToRequestPerProc+numAdditionalIdsToRequestPerProc);
 }
TEST_F(SideIdPoolInitialIdsTest, ids_are_unique)
{
    generate_1000_ids_on_all_procs();
    expect_ids_are_parallel_unique(2*numInitialIdsToRequestPerProc);
}
 void expect_initial_ids_are_parallel_unique()
 {
     expect_ids_are_parallel_unique(numInitialIdsToRequestPerProc);
 }