General Purpose library for Freestanding C++ and POSIX systems
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
|
- #include "test_scaffold.h"
- #include "gp/containers/array.hpp"
- #include "gp/system/logging_segment.hpp"
-
- #include <chrono>
- #include <cmath>
- #include <fstream>
- #include <iomanip>
- #include <iostream>
-
-
- struct logging_test : public test_scaffold {
- logging_test() {
- name = __FILE__ ":1";
- }
-
-
- virtual int run() {
- int res = 0;
-
- const gp::buffer<char> name{"FIRST TEST"};
- const gp::buffer<char> text{"FIRST TEST TEXT"};
-
- static_logging_segment<4> logger;
-
- return res;
- }
- };
-
- append_test dummy_rduhk786f(new logging_test{});
|