assert.cpp
521 Bytes
/*
* Copyright (c) 2015-2016, Arkadiusz Materek (arekmat@poczta.fm)
*
* All right reversed. Usage for commercial on not commercial
* purpose without written permission is not allowed.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
#include "assert.hpp"
volatile int gFaliuresCount = 0;
void testLogFailure(const char* str) {
gFaliuresCount++;
}