Welcome to mirror list, hosted at ThFree Co, Russian Federation.

on_test_fail.hpp « testing - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1854e2c95f3d4ad5de4c702e9dab5f2ab9d59598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <string>

class OnTestFailImpl;

class OnTestFail
{
    OnTestFailImpl * m_pImpl;
public:
    OnTestFail(bool ok, char const * check, char const * file, int line);
    void operator () (std::wstring const & s) const;
};