refactor(method): move Method related classes to method package

This commit is contained in:
2025-04-11 12:16:58 +02:00
parent 1891037ed7
commit 8842e9d8e1
9 changed files with 14 additions and 6 deletions

View File

@@ -4,6 +4,9 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Test;
import net.tomatentum.cutin.method.BestCandidateMethod;
import net.tomatentum.cutin.method.ReflectedMethod;
class ReflectedMethodTest {
@Test

View File

@@ -2,6 +2,8 @@ package net.tomatentum.cutin;
import java.lang.reflect.Method;
import net.tomatentum.cutin.method.ReflectedMethod;
public class TestReflectedMethod extends ReflectedMethod<String> {
protected TestReflectedMethod(Object containingObject) {