getImpl().setAffinity(1);
}
@Test
public void getAffinityReturnsValuePreviouslySet() throws Exception {
final IAffinity impl = getImpl();
final int cores = CORES;
for (int core = 0; core < cores; core++) {
final long mask = (1L << core);
getAffinityReturnsValuePreviouslySet(impl, mask);
}