Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,6 @@

<!-- test dependencies -->

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
Expand Down

This file was deleted.

265 changes: 0 additions & 265 deletions src/test/java/net/openhft/chronicle/algo/bitset/BitSetTest.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@
*/
package net.openhft.chronicle.algo.bitset;

import junit.framework.TestCase;
import net.openhft.chronicle.algo.bytes.Access;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

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

import static org.mockito.Mockito.*;

@SuppressWarnings("unchecked")
public class ConcurrentFlatBitSetFrameTest extends TestCase {
public class ConcurrentFlatBitSetFrameTest {
private ConcurrentFlatBitSetFrame bitSetFrame;
private Access<Object> access;
private Object handle;
Expand Down
Loading