@RunWith(PowerMockRunner.class)
@PrepareForTest({xx.class})
mockStatic(xx.class);
doSomething();
verifyStatic(xx.class, times(1));
xx.xxx(any());