Skip to content

Commit

Permalink
Исправлена ошибка с именем пакета в тестах
Browse files Browse the repository at this point in the history
  • Loading branch information
AestoDes committed Dec 16, 2024
1 parent a3cfad3 commit e57d5c1
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions test/InMemoryTaskManagerTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import tasktracker.manager.InMemoryTaskManager;
import tasktracker.manager.TaskManager;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertNotNull;

public class InMemoryTaskManagerTest {

private TaskManager taskManager;

@BeforeEach
public void setUp() {
taskManager = new InMemoryTaskManager();
}

@Test
public void testInitialization() {
assertNotNull(taskManager);
}
}

0 comments on commit e57d5c1

Please sign in to comment.