view extras/testplan/README.txt @ 633:6c090638b2b4

Use static buffer for module file name. According to the msdn examle the return value of getmodulefilename should be used to indicate success and not the size. And according to comments on that function on Windows 8.1 it does not return the needed size. So better be more robust and just use max_path as a limit.
author Andre Heinecke <andre.heinecke@intevation.de>
date Mon, 23 Jun 2014 15:29:48 +0200
parents de1e3a47ed21
children
line wrap: on
line source
= Test plan for TrustBridge

TrustBridge uses the Free Software test plan framework 
  [[https://wald.intevation.org/projects/intests/]]
to fill out test plans with a simple web server.
InTEsts can also produce PDF output.

To start, fetch the current version of inTests:

{{{
  hg clone https://hg.intevation.org/intests
}}}


== Completing a test plan

# Create a working copy of original testplan.xml into the intests directory:
 {{{
  cd intests
  cp /path/to/testplan.xml testplan.xml
 }}}
# Start web server [optional with port number]:
 {{{
  python main.py testplan.xml [PORT]
 }}}
# Enter test information
   (date, OS, tester, version, comment)
# Run all tests of each test suite and
   record the test results (yes = passed, no = failed, n/a).
# Quit web server
# Create test plan protocol as PDF:
{{{
  xsltproc --stringparam lang de xforms/xml2tex.xsl testplan.xml > tex/testplan.tex
  cd tex
  make testplan.pdf
}}}

http://wald.intevation.org/projects/trustbridge/