Erste Version der Lx-Office Testumgebung.
[kivitendo-erp.git] / t / lx-office.t
1 #=====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2006
4 # Web http://www.lx-office.org
5 #
6 #=====================================================================
7 #
8 #  Author: Udo Spallek
9 #   Email: udono@gmx.net
10 #
11 # This program is free software; you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 2 of the License, or
14 # (at your option) any later version.
15 #
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write to the Free Software
22 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #======================================================================
24 #
25 # Main Test Module: 
26 # For collecting all the tests in nice Test::Harness environment.
27 # Study the README for Selenium Installation and testing process 
28 # and enjoy starting
29 # #perl t/lx-office.t
30 # against the unstable release
31 #======================================================================
32
33   use strict; 
34   use warnings FATAL => 'all';
35   use diagnostics;
36   use Carp;
37   use Test::Harness;
38
39   
40 ## Backendtests:
41 #  &runtests(
42 #  );  
43
44
45 ## Frontendtests:
46   &runtests(
47     't/selenium/AllTests.t',
48   );
49
50 exit 1;