public void testSomeOTherStuff() {
CoveredByTestsInOtherPlaces x = new CoveredByTestsInOtherPlaces();
x.coveredElsewhere();
x.halfAndHalfBranch( false );
for ( int i = 0; i < 10; i+= 2 ) {
assertNotNull( x.switchOnInt( i ) );
}
x.new Brancher( null ).branch( false, true );
x.new Brancher( null ).branch( false, false );
}