Skip to content

Commit 121f619

Browse files
committed
chore: create mongodb template test
Signed-off-by: Otavio Santana <[email protected]>
1 parent 3e7dd79 commit 121f619

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

jnosql-mongodb/src/test/java/org/eclipse/jnosql/databases/mongodb/integration/MongoDBTemplateIntegrationTest.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
* Contributors:
1212
*
1313
* Otavio Santana
14-
* Alessandro Moscatelli
1514
*/
1615
package org.eclipse.jnosql.databases.mongodb.integration;
1716

@@ -24,11 +23,16 @@
2423
import org.jboss.weld.junit5.auto.AddExtensions;
2524
import org.jboss.weld.junit5.auto.AddPackages;
2625
import org.jboss.weld.junit5.auto.EnableAutoWeld;
26+
import org.junit.jupiter.api.condition.EnabledIfSystemProperty;
27+
28+
import static org.eclipse.jnosql.communication.driver.IntegrationTest.MATCHES;
29+
import static org.eclipse.jnosql.communication.driver.IntegrationTest.NAMED;
2730

2831
@EnableAutoWeld
2932
@AddPackages(value = {Convert.class, DocumentEntityConverter.class})
3033
@AddPackages(Music.class)
3134
@AddExtensions({EntityMetadataExtension.class,
3235
DocumentExtension.class})
36+
@EnabledIfSystemProperty(named = NAMED, matches = MATCHES)
3337
class MongoDBTemplateIntegrationTest {
3438
}

0 commit comments

Comments
 (0)