Skip to content

Commit f6a698d

Browse files
committed
add TypedIdsRegistryTest
1 parent 4fa44a9 commit f6a698d

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
package org.framefork.typedIds;
2+
3+
import org.junit.jupiter.api.Assertions;
4+
import org.junit.jupiter.api.Nested;
5+
import org.junit.jupiter.api.Test;
6+
7+
@SuppressWarnings("rawtypes")
8+
final class TypedIdsRegistryTest
9+
{
10+
11+
@Nested
12+
final class GetObjectBigIntIdClasses
13+
{
14+
15+
@Test
16+
public void shouldReturnListOfObjectBigIntIdClasses()
17+
{
18+
var result = TypedIdsRegistry.getObjectBigIntIdClasses();
19+
20+
Assertions.assertNotNull(result);
21+
}
22+
23+
}
24+
25+
@Nested
26+
final class GetObjectUuidClasses
27+
{
28+
29+
@Test
30+
public void shouldReturnListOfObjectUuidClasses()
31+
{
32+
var result = TypedIdsRegistry.getObjectUuidClasses();
33+
34+
Assertions.assertNotNull(result);
35+
}
36+
37+
}
38+
39+
}

0 commit comments

Comments
 (0)