cpp-ipc/test/imp/test_imp_error.cpp
2025-12-03 08:08:03 +00:00

13 lines
213 B
C++

#include <iostream>
#include "test.h"
#include "libipc/imp/error.h"
#include "libipc/imp/fmt.h"
TEST(error, error_code) {
std::error_code ecode;
EXPECT_FALSE(ecode);
std::cout << ipc::fmt(ecode, '\n');
}