view m-toolbox/test/repo_tests/run_repo_tests.m @ 7:1e91f84a4be8 database-connection-manager

Make ltpda_up.retrieve work with java.sql.Connection objects
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 16:20:06 +0100
parents f0afece42f48
children
line wrap: on
line source

% A simple script to run all the repository test scripts from a single
% database connection.
% 
% M Hewitson 24-02-08
% 
% $Id: run_repo_tests.m,v 1.7 2008/11/14 09:51:55 hewitson Exp $
% 

clear all;

conn = utils.mysql.connect('130.75.117.63', 'ltpda_test');

test_ao(conn)
test_mfir(conn)
test_miir(conn)
% test_plist(conn)
test_pzmodel(conn)
test_timespan(conn)

close(conn);