mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-14 16:38:00 -05:00
12 lines
219 B
C++
12 lines
219 B
C++
#ifndef TESTS_H
|
|
#define TESTS_H
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
void run_tests();
|
|
int run_fast_tests();
|
|
int run_not_slow_tests();
|
|
int run_user_defined_tests(const std::vector<std::string> & tests_or_tags);
|
|
|
|
#endif |