/** Copyright (C) SYSTAP, LLC DBA Blazegraph 2006-2016. All rights reserved. Contact: SYSTAP, LLC DBA Blazegraph 2501 Calvert ST NW #106 Washington, DC 20008 licenses@blazegraph.com This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* * Created on Nov 7, 2007 */ package com.bigdata.rdf.sail.webapp; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; import com.bigdata.journal.BufferMode; /** * Test suite. * * @author <a href="mailto:thompsonbry@users.sourceforge.net">Bryan Thompson</a> */ public class TestAll extends TestCase { /** * */ public TestAll() { super(); } /** * @param arg0 */ public TestAll(String arg0) { super(arg0); } public static Test suite() { final TestSuite suite = new TestSuite("WebApp"); // Test suite of NSS startup behavior and overrides. suite.addTestSuite(TestNanoSparqlServer.class); suite.addTestSuite(TestServiceWhiteList.class); // // /* // * WebApp Client. // */ // suite.addTest(com.bigdata.rdf.sail.webapp.client.TestAll.suite()); // // /* // * Test suite utility class for building XML/HTML documents. // */ // suite.addTestSuite(TestXMLBuilder.class); // // /* // * Test suite for content negotiation. // */ // suite.addTestSuite(TestConneg.class); // // /* // * Basic LBS unit tests (ranking and scoring hosts). // */ // suite.addTest(com.bigdata.rdf.sail.webapp.lbs.TestAll.suite()); /* * Core test suite for REST API behavior. This test suite is run for * each mode of the database (triples, sids, quads). * * Note: The test suite can also be run against a federation using the * main() routine in TestNanoSparqlServerWithProxyIndexManager. */ // RWStore specific unit tests. suite.addTest(TestNanoSparqlServerWithProxyIndexManager.suite( TestNanoSparqlServerWithProxyIndexManager .getTemporaryJournal(BufferMode.DiskRW), TestMode.triples)); suite.addTest(TestNanoSparqlServerWithProxyIndexManager.suite(TestMode.sids)); suite.addTest(TestNanoSparqlServerWithProxyIndexManager.suite(TestMode.triples)); suite.addTest(TestNanoSparqlServerWithProxyIndexManager.suite(TestMode.quads)); return suite; } }