General Purpose library for Freestanding C++ and POSIX systems
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
#include "test_scaffold.h"
|
|
|
|
struct meta_test : public test_scaffold {
|
|
meta_test() {
|
|
name = __FILE__ ":1";
|
|
}
|
|
|
|
virtual int run() {
|
|
return 0;
|
|
}
|
|
};
|
|
|
|
struct meta_test2 : public test_scaffold {
|
|
meta_test2() {
|
|
name = __FILE__ ":2";
|
|
}
|
|
|
|
class carrot{};
|
|
|
|
virtual int run() {
|
|
// throw carrot{};
|
|
return 0;
|
|
}
|
|
};
|
|
|
|
append_test dummy_r3436r43(new meta_test{});
|
|
append_test dummy_dfh486df(new meta_test2{});
|