Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CU_list_tests_to_file (0.23 sec)

  1. platforms/native/testing-native/src/main/resources/org/gradle/nativeplatform/test/cunit/tasks/gradle_cunit_main.c

     *      void gradle_cunit_register();
     */
    int main() {
        int failureCount;
    
        CU_initialize_registry();
    
        gradle_cunit_register();
    
        CU_list_tests_to_file();
        CU_automated_run_tests();
        failureCount = CU_get_number_of_failures();
    
        // Write test failures to the console
        if (failureCount > 0) {
            printf("\nThere were test failures:");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Automated.h

     *  applied.  It is an error to call this function before the CUnit
     *  test registry has been initialized (check by assertion).
     */
    
    CU_EXPORT CU_ErrorCode CU_list_tests_to_file(void);
    /**< 
     *  Generates an xml file containing a list of all tests in all suites 
     *  in the active registry.  The output file will be named according to 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top