use targetClass in demo

This commit is contained in:
金戟 2021-01-06 00:23:46 +08:00
parent 0a1b46b352
commit 31a0b49b7a
3 changed files with 31 additions and 31 deletions

View File

@ -25,38 +25,38 @@ class DemoMockTest {
return new BlackBox("mock_" + text);
}
@MockMethod
private String innerFunc(DemoMock self, String text) {
@MockMethod(targetClass = DemoMock.class)
private String innerFunc(String text) {
return "mock_" + text;
}
@MockMethod
private String staticFunc(DemoMock ignore) {
@MockMethod(targetClass = DemoMock.class)
private String staticFunc() {
return "_MOCK_TAIL";
}
@MockMethod
private String trim(String self) {
@MockMethod(targetClass = String.class)
private String trim() {
return "trim_string";
}
@MockMethod(targetMethod = "substring")
private String sub(String self, int i, int j) {
@MockMethod(targetClass = String.class, targetMethod = "substring")
private String sub(int i, int j) {
return "sub_string";
}
@MockMethod
private boolean startsWith(String self, String s) {
@MockMethod(targetClass = String.class)
private boolean startsWith(String s) {
return false;
}
@MockMethod
private BlackBox secretBox(BlackBox ignore) {
@MockMethod(targetClass = BlackBox.class)
private BlackBox secretBox() {
return new BlackBox("not_secret_box");
}
@MockMethod
private String callFromDifferentMethod(DemoMock self) {
@MockMethod(targetClass = DemoMock.class)
private String callFromDifferentMethod() {
if ("special_case".equals(MOCK_CONTEXT.get("case"))) {
return "mock_special";
}

View File

@ -22,35 +22,35 @@ internal class DemoMockTest {
@MockConstructor
private fun createBlackBox(text: String) = BlackBox("mock_$text")
@MockMethod
private fun innerFunc(self: DemoMock, text: String) = "mock_$text"
@MockMethod(targetClass = DemoMock::class)
private fun innerFunc(text: String) = "mock_$text"
@MockMethod
private fun staticFunc(ignore: DemoMock): String {
@MockMethod(targetClass = DemoMock::class)
private fun staticFunc(): String {
return "_MOCK_TAIL";
}
@MockMethod
private fun trim(self: BlackBox) = "trim_string"
@MockMethod(targetClass = BlackBox::class)
private fun trim() = "trim_string"
@MockMethod(targetMethod = "substring")
private fun sub(self: BlackBox, i: Int, j: Int) = "sub_string"
@MockMethod(targetClass = BlackBox::class, targetMethod = "substring")
private fun sub(i: Int, j: Int) = "sub_string"
@MockMethod
private fun startsWith(self: BlackBox, s: String) = false
@MockMethod(targetClass = BlackBox::class)
private fun startsWith(s: String) = false
@MockMethod
private fun secretBox(ignore: BlackBox): BlackBox {
@MockMethod(targetClass = BlackBox::class)
private fun secretBox(): BlackBox {
return BlackBox("not_secret_box")
}
@MockMethod
private fun createBox(ignore: ColorBox, color: String, box: BlackBox): BlackBox {
@MockMethod(targetClass = ColorBox::class)
private fun createBox(color: String, box: BlackBox): BlackBox {
return BlackBox("White_${box.get()}")
}
@MockMethod
private fun callFromDifferentMethod(self: DemoMock): String {
@MockMethod(targetClass = DemoMock::class)
private fun callFromDifferentMethod(): String {
return if (MOCK_CONTEXT["case"] == "special_case") {
"mock_special"
} else {

View File

@ -174,7 +174,7 @@ public class TestClassHandler extends BaseClassHandler {
List<Byte> types = ClassUtil.getParameterTypes(mn.desc);
int size = types.size();
int parameterOffset = 0;
mn.maxStack += 1;
mn.maxStack += 2;
il.add(getIntInsn(size));
il.add(new TypeInsnNode(ANEWARRAY, ClassUtil.CLASS_OBJECT));
for (int i = 0; i < size; i++) {