1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-11-03 04:33:30 -05:00
polybar/tests/unit_test.hpp

18 lines
265 B
C++
Raw Normal View History

2016-06-14 23:32:35 -04:00
#pragma once
#include <cppunit/extensions/HelperMacros.h>
class unit_test : public CppUnit::TestFixture {
public:
virtual void prepare() {}
virtual void finish() {}
void set_up() {
this->prepare();
}
void tear_down() {
this->finish();
}
};