|
#include <j7s-plugin/Authorizer.hpp>
|
|
#include "gtest/gtest.h"
|
|
|
|
// Demonstrate some basic assertions.
|
|
TEST(AuthorizerTest, BasicAssertions) {
|
|
// Expect two strings not to be equal.
|
|
EXPECT_STRNE("hello", "world");
|
|
// Expect equality.
|
|
EXPECT_EQ(7 * 6, 42);
|
|
}
|