Sha256: 17e48db50042ecad51cf6e7e9e56b38ebf905f635ee533424e9a9ccc70a8395c
Contents?: true
Size: 491 Bytes
Versions: 22
Compression:
Stored size: 491 Bytes
Contents
#include "config.h" #include "internal.h" #include <gtest/gtest.h> #define LIBCOUCHBASE_INTERNAL 1 #include <libcouchbase/couchbase.h> class MiscTests : public ::testing::Test { }; TEST_F(MiscTests, testSanityCheck) { ASSERT_TRUE(lcb_verify_compiler_setup()); } TEST_F(MiscTests, testGetTmpdir) { const char *tmpdir = lcb_get_tmpdir(); ASSERT_FALSE(tmpdir == NULL); ASSERT_STRNE("", tmpdir); } TEST_F(MiscTests, testVersionG) { ASSERT_GT(lcb_version_g, (lcb_U32)0); }
Version data entries
22 entries across 22 versions & 2 rubygems