File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed
modules/typed-ids/src/test/java/org/framefork/typedIds Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments