Files
2025-02-05 04:43:28 +00:00

17 lines
235 B
Plaintext

public class Foo {
public void doSomething() {
}
public void doSomethingElse(){
}
}
public class FooTest extends TestCase {
public void testDoSomething() {
}
<spot>
public void testDoSomethingElse() {
}
</spot>
}