-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
108 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 0 additions & 34 deletions
34
...er/src/main/java/ee/jakarta/tck/data/example/extension/MyApplicationArchiveProcessor.java
This file was deleted.
Oops, something went wrong.
27 changes: 0 additions & 27 deletions
27
...a-tck-runner/src/main/java/ee/jakarta/tck/data/example/extension/MyLoadableExtension.java
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
...nner/src/main/resources/META-INF/services/org.jboss.arquillian.core.spi.LoadableExtension
This file was deleted.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
jnosql-data-tck-runner/src/test/java/org/eclipse/jnosql/MySignatureTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* Copyright (c) 2024 Contributors to the Eclipse Foundation | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v1.0 | ||
* and Apache License v2.0 which accompanies this distribution. | ||
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html | ||
* and the Apache License v2.0 is available at http://www.opensource.org/licenses/apache2.0.php. | ||
* | ||
* You may elect to redistribute this code under either of these licenses. | ||
* | ||
* Contributors: | ||
* | ||
* Kyle Aure | ||
*/ | ||
package org.eclipse.jnosql; | ||
|
||
import ee.jakarta.tck.data.standalone.signature.SignatureTests; | ||
|
||
public class MySignatureTests extends SignatureTests { | ||
} |
39 changes: 39 additions & 0 deletions
39
jnosql-data-tck-runner/src/test/java/org/eclipse/jnosql/tck/MyEntityTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright (c) 2024 Contributors to the Eclipse Foundation | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v1.0 | ||
* and Apache License v2.0 which accompanies this distribution. | ||
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html | ||
* and the Apache License v2.0 is available at http://www.opensource.org/licenses/apache2.0.php. | ||
* | ||
* You may elect to redistribute this code under either of these licenses. | ||
* | ||
* Contributors: | ||
* | ||
* Kyle Aure | ||
*/ | ||
package org.eclipse.jnosql.tck; | ||
|
||
import org.eclipse.jnosql.mapping.core.spi.EntityMetadataExtension; | ||
import org.eclipse.jnosql.mapping.core.Converters; | ||
import org.eclipse.jnosql.mapping.document.DocumentTemplate; | ||
import org.eclipse.jnosql.mapping.document.DocumentTemplateProducer; | ||
import org.eclipse.jnosql.mapping.document.spi.DocumentExtension; | ||
import org.eclipse.jnosql.mapping.reflection.Reflections; | ||
import org.eclipse.jnosql.mapping.semistructured.EntityConverter; | ||
import org.jboss.weld.junit5.WeldJunit5Extension; | ||
import org.jboss.weld.junit5.auto.AddExtensions; | ||
import org.jboss.weld.junit5.auto.AddPackages; | ||
import org.jboss.weld.junit5.auto.EnableAutoWeld; | ||
import org.junit.jupiter.api.extension.ExtendWith; | ||
|
||
import ee.jakarta.tck.data.standalone.entity.EntityTests; | ||
|
||
@EnableAutoWeld | ||
@ExtendWith(WeldJunit5Extension.class) | ||
@AddPackages(value = {Converters.class, EntityConverter.class, DocumentTemplate.class}) | ||
@AddPackages(DocumentTemplateProducer.class) | ||
@AddPackages(Reflections.class) | ||
@AddExtensions({EntityMetadataExtension.class, DocumentExtension.class}) | ||
public class MyEntityTests extends EntityTests { | ||
} |
39 changes: 39 additions & 0 deletions
39
jnosql-data-tck-runner/src/test/java/org/eclipse/jnosql/tck/MyNoSQLEntityTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright (c) 2024 Contributors to the Eclipse Foundation | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v1.0 | ||
* and Apache License v2.0 which accompanies this distribution. | ||
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html | ||
* and the Apache License v2.0 is available at http://www.opensource.org/licenses/apache2.0.php. | ||
* | ||
* You may elect to redistribute this code under either of these licenses. | ||
* | ||
* Contributors: | ||
* | ||
* Kyle Aure | ||
*/ | ||
package org.eclipse.jnosql.tck; | ||
|
||
import org.eclipse.jnosql.mapping.core.spi.EntityMetadataExtension; | ||
import org.eclipse.jnosql.mapping.core.Converters; | ||
import org.eclipse.jnosql.mapping.document.DocumentTemplate; | ||
import org.eclipse.jnosql.mapping.document.DocumentTemplateProducer; | ||
import org.eclipse.jnosql.mapping.document.spi.DocumentExtension; | ||
import org.eclipse.jnosql.mapping.reflection.Reflections; | ||
import org.eclipse.jnosql.mapping.semistructured.EntityConverter; | ||
import org.jboss.weld.junit5.WeldJunit5Extension; | ||
import org.jboss.weld.junit5.auto.AddExtensions; | ||
import org.jboss.weld.junit5.auto.AddPackages; | ||
import org.jboss.weld.junit5.auto.EnableAutoWeld; | ||
import org.junit.jupiter.api.extension.ExtendWith; | ||
|
||
import ee.jakarta.tck.data.standalone.nosql.example.NoSQLEntityTests; | ||
|
||
@EnableAutoWeld | ||
@ExtendWith(WeldJunit5Extension.class) | ||
@AddPackages(value = {Converters.class, EntityConverter.class, DocumentTemplate.class}) | ||
@AddPackages(DocumentTemplateProducer.class) | ||
@AddPackages(Reflections.class) | ||
@AddExtensions({EntityMetadataExtension.class, DocumentExtension.class}) | ||
public class MyNoSQLEntityTests extends NoSQLEntityTests { | ||
} |
This file was deleted.
Oops, something went wrong.