/*
Copyright (C) 2007 Mobixess Inc. http://www.java-objects-database.com
This file is part of the JODB (Java Objects Database) open source project.
JODB is free software; you can redistribute it and/or modify it under
the terms of version 2 of the GNU General Public License as published
by the Free Software Foundation.
JODB 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.
*/
package com.mobixess.jodb.tests.junit;
import com.mobixess.jodb.tests.IndexingTests;
import com.mobixess.jodb.tests.NQTests;
import com.mobixess.jodb.tests.NqTestSE;
import com.mobixess.jodb.tests.QueryTests;
import com.mobixess.jodb.tests.SimpleAddTestSE;
import com.mobixess.jodb.tests.clientserver.ServerClientConcurent;
import com.mobixess.jodb.tests.clientserver.ServerClientIndexingTests;
import com.mobixess.jodb.tests.clientserver.ServerClientModeSimpleAddTest;
import com.mobixess.jodb.tests.clientserver.ServerClientNQTests;
import com.mobixess.jodb.tests.clientserver.ServerClientQueryTest;
import junit.framework.TestCase;
public class MainJUnitTest extends TestCase {
public void testBaseAddRemoveSE() throws Exception {
new SimpleAddTestSE().main(null);
}
public void testQuery() throws Exception{
new QueryTests().main(null);
}
public void testIndex() throws Exception{
new IndexingTests().main(null);
}
public void testNQ() throws Exception{
new NqTestSE().main(null);
}
public void serverClientConcurentResolve() throws Exception{
new ServerClientConcurent().main(null);
}
public void testServerBaseAddRemove()throws Exception{
new ServerClientModeSimpleAddTest().main(null);
}
public void testServerQuery() throws Exception{
new ServerClientQueryTest().main(null);
}
public void testServerIndex() throws Exception{
new ServerClientIndexingTests().main(null);
}
public void testServerNQ() throws Exception{
new ServerClientNQTests().main(null);
}
}