Implement the first real test of gpt4all-chat (#3116)

Signed-off-by: Jared Van Bortel <jared@nomic.ai>
This commit is contained in:
Jared Van Bortel
2024-10-20 11:38:04 -04:00
committed by GitHub
parent 9cafd38dcf
commit 7f5f0869e7
14 changed files with 157 additions and 13 deletions

View File

@@ -0,0 +1,5 @@
#include <gtest/gtest.h>
TEST(BasicTest, TestInitialization) {
EXPECT_TRUE(true);
}

View File

@@ -0,0 +1,6 @@
#include <gtest/gtest.h>
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}