File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
src/test/java/org/soujava/demos/mongodb/document Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 1+ package org .soujava .demos .mongodb .document ;
2+
3+ import org .eclipse .jnosql .mapping .Database ;
4+ import org .eclipse .jnosql .mapping .core .Converters ;
5+ import org .eclipse .jnosql .mapping .document .DocumentTemplate ;
6+ import org .eclipse .jnosql .mapping .document .spi .DocumentExtension ;
7+ import org .eclipse .jnosql .mapping .reflection .Reflections ;
8+ import org .eclipse .jnosql .mapping .reflection .spi .ReflectionEntityMetadataExtension ;
9+ import org .eclipse .jnosql .mapping .semistructured .EntityConverter ;
10+ import org .jboss .weld .junit5 .auto .AddExtensions ;
11+ import org .jboss .weld .junit5 .auto .AddPackages ;
12+ import org .jboss .weld .junit5 .auto .EnableAutoWeld ;
13+
14+ @ EnableAutoWeld
15+ @ AddPackages (value = {Database .class , EntityConverter .class , DocumentTemplate .class })
16+ @ AddPackages (Room .class )
17+ @ AddPackages (ManagerSupplier .class )
18+ @ AddPackages (Reflections .class )
19+ @ AddPackages (Converters .class )
20+ @ AddExtensions ({ReflectionEntityMetadataExtension .class , DocumentExtension .class })
21+ class RoomServiceTest {
22+ }
You can’t perform that action at this time.
0 commit comments