add first test

This commit is contained in:
Bassem Girgis
2020-11-12 10:40:37 -06:00
parent b2bac942b8
commit 0341fd46fd
11 changed files with 105 additions and 4 deletions

View File

@@ -1,7 +1,9 @@
#include <gtest/gtest.h>
#include <iostream>
int main()
{
std::cout << "hi there" << std::endl;
TEST(Array, test){
std::cout << "g" << std::endl;
EXPECT_EQ(1, 1);
}