- move com, dialog and winfct function into new place. - add testbench for com and winfct. - dialog now still not working.
17 lines
353 B
C++
17 lines
353 B
C++
#include <gtest/gtest.h>
|
|
#include <yycc.hpp>
|
|
#include <yycc/windows/com.hpp>
|
|
|
|
#define COM ::yycc::windows::com
|
|
|
|
namespace yycctest::windows::com {
|
|
#if defined(YYCC_OS_WINDOWS) && defined(YYCC_STL_MSSTL)
|
|
|
|
TEST(WindowsCom, IsInitialized) {
|
|
// COM environment should always be ready.
|
|
EXPECT_TRUE(COM::is_initialized());
|
|
}
|
|
|
|
#endif
|
|
}
|