view m-toolbox/test/repo_tests/run_repo_tests.m @ 3:960fe1aa1c10
database-connection-manager
Add LTPDADatabaseConnectionManager implementation. Java code
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
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);