mirror of https://gitlab.com/cppit/jucipp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
470 B
17 lines
470 B
|
7 years ago
|
#pragma once
|
||
|
|
#include "config.h"
|
||
|
|
#include "plugins.h"
|
||
|
|
#include <gtkmm.h>
|
||
|
|
|
||
|
|
class __attribute__((visibility("default")))
|
||
|
|
suite {
|
||
|
|
public:
|
||
|
|
suite(const boost::filesystem::path &path);
|
||
|
|
Glib::RefPtr<Gtk::Application> app = Gtk::Application::create();
|
||
|
|
Config &config = Config::get();
|
||
|
|
boost::filesystem::path test_file_path = boost::filesystem::canonical(std::string(JUCI_TESTS_PATH) + "/python_bindings");
|
||
|
|
bool has_assertion = false;
|
||
|
|
Plugins plugins;
|
||
|
|
~suite();
|
||
|
|
};
|