mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-09-10 12:59:09 +00:00
Implement the first real test of gpt4all-chat (#3116)
Signed-off-by: Jared Van Bortel <jared@nomic.ai>
This commit is contained in:
5
gpt4all-chat/tests/cpp/basic_test.cpp
Normal file
5
gpt4all-chat/tests/cpp/basic_test.cpp
Normal file
@@ -0,0 +1,5 @@
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
TEST(BasicTest, TestInitialization) {
|
||||
EXPECT_TRUE(true);
|
||||
}
|
6
gpt4all-chat/tests/cpp/test_main.cpp
Normal file
6
gpt4all-chat/tests/cpp/test_main.cpp
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
::testing::InitGoogleTest(&argc, argv);
|
||||
return RUN_ALL_TESTS();
|
||||
}
|
Reference in New Issue
Block a user