Mercurial > trustbridge
comparison testplan/README.txt @ 1183:3e4ac23938e1
Moved testplan from 'extras/testplan' to 'testplan'.
author | Emanuel Schuetze <emanuel@intevation.de> |
---|---|
date | Mon, 22 Sep 2014 12:55:24 +0200 |
parents | extras/testplan/README.txt@de1e3a47ed21 |
children |
comparison
equal
deleted
inserted
replaced
1182:0651afddb4ec | 1183:3e4ac23938e1 |
---|---|
1 = Test plan for TrustBridge | |
2 | |
3 TrustBridge uses the Free Software test plan framework | |
4 [[https://wald.intevation.org/projects/intests/]] | |
5 to fill out test plans with a simple web server. | |
6 InTEsts can also produce PDF output. | |
7 | |
8 To start, fetch the current version of inTests: | |
9 | |
10 {{{ | |
11 hg clone https://hg.intevation.org/intests | |
12 }}} | |
13 | |
14 | |
15 == Completing a test plan | |
16 | |
17 # Create a working copy of original testplan.xml into the intests directory: | |
18 {{{ | |
19 cd intests | |
20 cp /path/to/testplan.xml testplan.xml | |
21 }}} | |
22 # Start web server [optional with port number]: | |
23 {{{ | |
24 python main.py testplan.xml [PORT] | |
25 }}} | |
26 # Enter test information | |
27 (date, OS, tester, version, comment) | |
28 # Run all tests of each test suite and | |
29 record the test results (yes = passed, no = failed, n/a). | |
30 # Quit web server | |
31 # Create test plan protocol as PDF: | |
32 {{{ | |
33 xsltproc --stringparam lang de xforms/xml2tex.xsl testplan.xml > tex/testplan.tex | |
34 cd tex | |
35 make testplan.pdf | |
36 }}} |