public class MockStaticTest extends TestCase {
public static TestSuite suite() throws Exception {
// This is not the best way to add a test suite, but we do this here
// for testing purposes.
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;
}