次の方法で共有


SPS_TEARDOWN_GROUP (Compact 2013)

3/26/2014

This structure is pointed to by the ShellProcspParam parameter and contains the function table entry and other information for the group of tests that was just executed.

Syntax

typedef struct _SPS_TEARDOWN_GROUP {
   LPFUNCTION_TABLE_ENTRY lpFTE;
   DWORD dwGroupTestsSkipped;
   DWORD dwGroupTestsPassed;
   DWORD dwGroupTestsFailed;
   DWORD dwGroupTestsAborted;
   DWORD dwGroupExecutionTime;
} SPS_TEARDOWN_GROUP, *LPSPS_TEARDOWN_GROUP;

Members

  • lpFTE
    Pointer to the FUNCTION_TABLE_ENTRY structure within your test module's function table for the group of test cases.
  • dwGroupTestsSkipped
    The number of tests in the group that were skipped.
  • dwGroupTestsPassed
    The number of tests in the group that passed.
  • dwGroupTestsFailed
    The number of tests in the group that failed.
  • dwGroupTestsAborted
    The number of tests in the group that were aborted.
  • dwGroupExecutionTime
    Elapsed execution time in milliseconds that the group of test cases took to complete.

Requirements

Header

tux.h

See Also

Reference

ShellProc Structures