Simplify ComponentLocator

This commit is contained in:
2025-04-27 22:52:25 +02:00
parent ac854ed4f1
commit c38835fd7b
22 changed files with 57 additions and 71 deletions

View File

@ -9,13 +9,13 @@ import org.junit.jupiter.api.Test;
class CommandsTests {
PICComponents picComponents;
PICComponentLocator picComponents;
public CommandsTests() {}
@BeforeEach
void resetComponents() {
picComponents = new PICComponents();
picComponents = new PICComponentLocator();
}
@Test