Skip to content

Instantly share code, notes, and snippets.

@njlr
Created May 15, 2017 16:21
Show Gist options
  • Save njlr/9ea83eeb6b7f4abf8786edb54a91705f to your computer and use it in GitHub Desktop.
Save njlr/9ea83eeb6b7f4abf8786edb54a91705f to your computer and use it in GitHub Desktop.
#include <gtest/gtest.h>
#include <mathutils/add.hpp>
TEST(mathutils, add) {
ASSERT_EQ(3, add(1, 2));
ASSERT_EQ(7, add(4, 3));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment