tenfourfox/dom/media/gtest/TestRust.cpp

9 lines
185 B
C++
Raw Normal View History

2017-04-19 07:56:45 +00:00
#include <stdint.h>
extern "C" uint8_t* test_rust();
TEST(rust, CallFromCpp) {
auto greeting = test_rust();
EXPECT_STREQ(reinterpret_cast<char*>(greeting), "hello from rust.");
}