Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-2091 deprecate old shacl compliance tests #2094

Merged
merged 1 commit into from
Apr 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,12 @@
/**
* Tests the SHACL implementation against the w3c test suite
*
* @deprecated This test suite is not maintained. Use {@see org.eclipse.rdf4j.sail.shacl.W3cComplianceTest} instead. We
* may un-deprecate this suite in the future.
*
* @author James Leigh
*/
@Deprecated
public class SHACLComplianceTest extends AbstractSHACLTest {

// set this to true to run all tests!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,13 @@

/**
* A SHACL constraint test suite, created by reading in a W3C working-group style manifest.
*
*
* @deprecated This test suite is not maintained. Use {@see org.eclipse.rdf4j.sail.shacl.W3cComplianceTest} instead. We
* may un-deprecate this suite in the future.
*
* @author James Leigh
*/
@Deprecated
public abstract class AbstractSHACLTest extends TestCase {

/*-----------*
Expand Down Expand Up @@ -89,7 +93,7 @@ protected Repository createRepository(Model shapesGraph) throws Exception {

/**
* Creates a new un-initialized Sail stack
*
*
* @return a new un-initialized Sail stack
*/
protected abstract Sail newSail();
Expand Down