PowerMockSuite powerMockJunit3Suite = new PowerMockSuite("Unit tests for " + MockStaticTest.class.getSimpleName());
final MockStaticTest stupidSingletonTest = new MockStaticTest();
stupidSingletonTest.setName("testSay");
TestSuite suite = new TestSuite();
suite.addTest(stupidSingletonTest);
powerMockJunit3Suite.addTest(suite);
return powerMockJunit3Suite;
}
public void testSay() throws Exception {
mockStatic(StaticService.class);