[#BloombergLP-bsls-ProtocolTest_Status] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bsls.adoc[bsls]::ProtocolTest_Status :relfileprefix: ../../ :mrdocs: This class keeps track of the test status, which includes the status of the last test and the number of failures across all tests. == Synopsis Declared in `<bsls_protocoltest.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- class ProtocolTest_Status; ---- == Member Functions [cols="1,4"] |=== | Name| Description | xref:BloombergLP/bsls/ProtocolTest_Status/2constructor.adoc[`ProtocolTest_Status`] [.small]#[constructor]# | Create an object of the `ProtocolTest_Status` class with the default state in which `failures() == 0` and `last() == true`. | xref:BloombergLP/bsls/ProtocolTest_Status/fail.adoc[`fail`] | Record a test failure by increasing the number of `failures` and setting the status of the last test to `false`. | xref:BloombergLP/bsls/ProtocolTest_Status/failures.adoc[`failures`] | Return the number of failures encountered during testing of a protocol class, which is 0 if all tests succeeded or if no tests ran. | xref:BloombergLP/bsls/ProtocolTest_Status/last.adoc[`last`] | Return `true` if the last test completed successfully (or no test has yet completed), and `false` if it failed. | xref:BloombergLP/bsls/ProtocolTest_Status/resetLast.adoc[`resetLast`] | Reset the status of the last test to `true`. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#