Set up basic tests with gtest

This commit is contained in:
2024-02-17 23:07:26 +01:00
parent f541e2f7f8
commit ee1a8cc6e6
5 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#include "gtest/gtest.h"
#include "cublas_v2.h"
class CublasTestFixture : public ::testing::Test {
protected:
static cublasHandle_t cublasHandle;
static void SetUpTestSuite();
static void TearDownTestSuite();
};