[
https://issues.apache.org/jira/browse/JENA-1585?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16569444#comment-16569444
]
ASF GitHub Bot commented on JENA-1585:
--------------------------------------
Github user kinow commented on a diff in the pull request:
https://github.com/apache/jena/pull/456#discussion_r207734712
--- Diff:
jena-fuseki2/jena-fuseki-core/src/test/java/org/apache/jena/fuseki/package-info.java
---
@@ -16,38 +16,17 @@
* limitations under the License.
*/
-package org.apache.jena.fuseki.servlets;
-
-import java.io.* ;
-
/**
-* Code needed to implement an OutputStream that does nothing.
-*/
-
-
-public class NullOutputStream extends /*Filter*/OutputStream
-{
- public NullOutputStream()
- {
- }
-
- // The OutputStream operations
- @Override
- public void close() { /* .close() ;*/ }
- @Override
- public void flush() { /* .flush() ;*/ }
-
- // Need to implement this one.
- @Override
- public void write(int b) { /* .write(b) ;*/ }
- @Override
- public void write(byte b[]) { /* this.write(b, 0, b.length) ; */}
+ * This package has the Fuseki full server tests. ServerCtl manages a
full server for tetsing.
--- End diff --
s/tetsing/testing
> Reorganize the Fuseki codebase to split the server engine classes from the
> webapp classes
> -----------------------------------------------------------------------------------------
>
> Key: JENA-1585
> URL: https://issues.apache.org/jira/browse/JENA-1585
> Project: Apache Jena
> Issue Type: Improvement
> Components: Fuseki
> Affects Versions: Jena 3.8.0
> Reporter: Andy Seaborne
> Assignee: Andy Seaborne
> Priority: Minor
> Fix For: Jena 3.9.0
>
>
> This is a step towards separate packages for the fuseki server engine (the
> servlets, request routing, some Jetty related support code) and the webapp
> version of Fuseki that becomes the war and standalong jar in
> jena-fuseki-server.
> This first step is code reorganization with module jena-fuseki-core to put
> the webapp java code it separate packages to the rest of the engine.
> When split, the current jena-fuseki-core tests would go into
> jena-fuseki-weabpp because they test the full server. The non-UI embeddable
> server jena-fuseki-embedded and jena-fuseki-basic already gets test in the
> integration tests.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)