13 lines
204 B
C++
13 lines
204 B
C++
#include <gtest/gtest.h>
|
|
|
|
#include "yaze.h"
|
|
|
|
namespace yaze_test {
|
|
|
|
TEST(YazeCLibTest, InitializeAndCleanup) {
|
|
yaze_flags flags;
|
|
yaze_init(&flags);
|
|
yaze_cleanup(&flags);
|
|
}
|
|
|
|
} // namespace yaze_test
|