Sign in
android
/
platform
/
tools
/
idea
/
c6218e46d5d2017e987ecdbd99b318a95c42abc0
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
ConvertJUnit3TestCaseToJUnit4Intention
/
after.java.template
blob: 167b036233e8da1fe83b458ab2ecf48439041983 [
file
] [
log
] [
blame
]
public
class
X
{
@Before
public
void
setUp
()
{}
@After
public
void
tearDown
()
{}
@Test
public
void
testX
()
{
Assert
.
assertTrue
(
true
);
}
}