Changeset 55 for php/trunk/doxygen
- Timestamp:
- Jul 17, 2011, 3:14:25 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
php/trunk/doxygen/doc_page_option_unittest.php
r53 r55 46 46 * 47 47 * The unittests are provided in subdirectories below the \c unittest directory, 48 * where the name of the subdirectory represents the name of the testcase. An exception 49 * to this rule are \c RDF \c Testcases, they are implemented by a testcase in a single subdirectory. 48 * where the name of the subdirectory represents the name of the unittest. An exception 49 * to this rule are unittests related to the \c RDF \c Test \c Cases of \c W3C, they are 50 * implemented by a unittest in a single subdirectory. 50 51 * 51 * The testcase is implemented in the file \c unittest.php within the tescasesubdirectory.52 * Unittests are implemented in the file \c unittest.php within the respective unittest subdirectory. 52 53 * 53 * Execute \code make list \endcode in the \c unittest directory to determine the available 54 * testcases. 54 * \subsection sec_unittest_all_w3c Unittests related to RDF Test Cases 55 55 * 56 * \subsection sec_unittest_all_lib Library specific unittests 57 * 58 * Library specific unittests are each provided in a subdirectory below the \c unittest directory, 59 * where the name of the subdirectory represents the name of the testcase. 60 * 61 * \subsection sec_unittest_all_w3c RDF Testcases specific unittests 62 * 63 * \libname comes with support for selected testcases of the \c W3C \c RDF \c Testcases, 56 * \libname comes with support for selected testcases of the \c RDF \c Test \c Cases of the \c W3C, 64 57 * see \htmllinkext{http://www.w3.org/TR/rdf-testcases/} for details. Supported are 65 58 * most of the so-called \c Positive \c parser \c tests. 66 59 * 67 * All of these unittests are executed by a single testcase60 * All of these unittests are executed by a single unittest 68 61 * in the subdirectory \c rdftestcases below the \c unittest directory. 69 * The name of the testcase is provided by the makefile, setting the name as vaule70 * of the environment variable \c TESTCASE.62 * The name of the \c RDF \Test \c Case is provided by the makefile, setting the 63 * name as the value of the environment variable \c TESTCASE. 71 64 * 72 * \note Executing \c RDF \c Test cases in fact tests the underlying library used65 * \note Executing \c RDF \c Test\c Cases in fact tests the underlying library used 73 66 * for parsing and serializing RDF data (currently ARC2). If a test fails, it is most likely 74 67 * the error of the underlying library and not of \libname. … … 78 71 * <hr> 79 72 * 80 * \section sec_unittest_ executing Executing testcases73 * \section sec_unittest_available Determine available unittests 81 74 * 82 * For executing testcases, execute \c make in the directory \c unittest. 75 * Execute \code make list \endcode in the \c unittest directory to determine available 76 * unittests. 77 * 78 * \section sec_unittest_executing Executing unittests 79 * 80 * For executing testcases, execute \code make <target> \endcode in the 81 * directory \c unittest. 83 82 * 84 83 * The available make targets can be shown by executing \c make with no target: … … 91 90 list - list names of testcases 92 91 93 all - execute all testcases (lib && rdf)92 all - execute all unittests (lib && rdf) 94 93 95 lib - execute all library testcases96 lib TESTCASE=<name> - execute specified library testcase94 lib - execute all library specific unittests 95 lib TESTCASE=<name> - execute given library specific unittests 97 96 98 rdf - execute all of selected RDF testcases of W3C99 rdf TESTCASE=<name> - execute specified RDF testcase100 101 For information on RDF Test cases see: http://www.w3.org/TR/rdf-testcases/97 rdf - execute all of selected unitests related to W3C RDF Test Cases 98 rdf TESTCASE=<name> - execute given unittest related to W3C RDF Test Case 99 100 For information on RDF Test Cases see: http://www.w3.org/TR/rdf-testcases/ 102 101 \endverbatim 103 102 *
Note:
See TracChangeset
for help on using the changeset viewer.