Revision: 3257
Author: janne.t.harkonen
Date: Tue May 11 03:23:15 2010
Log: Added chapter about dry-run
http://code.google.com/p/robotframework/source/detail?r=3257
Modified:
/trunk/doc/userguide/src/ExecutingTestCases/ConfiguringExecution.txt
=======================================
--- /trunk/doc/userguide/src/ExecutingTestCases/ConfiguringExecution.txt
Wed May 5 04:38:01 2010
+++ /trunk/doc/userguide/src/ExecutingTestCases/ConfiguringExecution.txt
Tue May 11 03:23:15 2010
@@ -340,6 +340,24 @@
pybot --runmode random:test my_test.txt
+
+Dry run
+'''''''
+
+Starting from Robot Framework 2.5 it is possible to specify a dry-run mode
+using the option :opt:`runmode` with value :opt:`DryRun`
(case-insensitive). In
+the dry run mode, all but the lowest level (library) keywords are executed.
+This mode can be used to validate the test data; if the dry-run passes, the
+data should be syntactically correct. The dry-run execution may fail for
+following reasons:
+
+ * Using keywords that are not found
+ * Using keywords with wrong number of arguments
+ * Using user keywords that have invalid syntax
+
+In addition, warnings are given for imports that cannot be resolved.
+
+
Controlling the monitor output
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~