mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-14 02:06:16 +02:00
24 lines
376 B
C++
24 lines
376 B
C++
|
#include <gtest/gtest.h>
|
||
|
#include <gmock/gmock.h>
|
||
|
|
||
|
#include "store-api.hh"
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
class LibStoreTest : public ::testing::Test {
|
||
|
public:
|
||
|
static void SetUpTestSuite() {
|
||
|
initLibStore();
|
||
|
}
|
||
|
|
||
|
protected:
|
||
|
LibStoreTest()
|
||
|
: store(openStore("dummy://"))
|
||
|
{ }
|
||
|
|
||
|
ref<Store> store;
|
||
|
};
|
||
|
|
||
|
|
||
|
} /* namespace nix */
|