Given how fast it should be I'd tend toward advocating a brute-force test, something like:
for (int i=-100000; i<100000; i++)
assertTrueassertEquals(DivThreeEfficiently.isMultipleOfThree(i), i%3==0);
This makes the intent more apparent, reduces the amount of code, and still covers a lot more cases than the test code you used. It would probably still be good to cover a few of the obvious corner/limit cases (e.g., minimum/maximum values), but this seems to simplify the "sunny day" testing while expanding coverage substantially.