Initial import
[glmemperf] / test.cpp
1 /**
2  * OpenGL ES 2.0 memory performance estimator
3  * Copyright (C) 2009 Nokia
4  *
5  * \author Sami Kyöstilä <sami.kyostila@nokia.com>
6  *
7  * Test base class
8  */
9 #include "test.h"
10 #include <stdexcept>
11
12 void Test::fail(const std::string& reason)
13 {
14     throw std::runtime_error(reason);
15 }