File indexing completed on 2024-11-24 04:54:35

0001 /*
0002     SPDX-License-Identifier: MPL-2.0
0003 */
0004 
0005 /* Copyright (c) 2015 Brian R. Bondy. Distributed under the MPL2 license.
0006  * This Source Code Form is subject to the terms of the Mozilla Public
0007  * License, v. 2.0. If a copy of the MPL was not distributed with this
0008  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
0009 
0010 #ifndef TEST_TESTRESULT2_H_
0011 #define TEST_TESTRESULT2_H_
0012 
0013 #include "./CppUnitLite/TestHarness.h"
0014 
0015 class TestResult2 : public TestResult {
0016  public:
0017   TestResult2() : hasFailures(false) {
0018   }
0019   virtual void addFailure(const Failure& failure) {
0020     hasFailures = true;
0021     TestResult::addFailure(failure);
0022   }
0023   bool hasFailures;
0024 };
0025 
0026 #endif  // TEST_TESTRESULT2_H_