mirror of
https://github.com/status-im/realm-js.git
synced 2025-02-05 19:24:31 +00:00
16 lines
256 B
C++
16 lines
256 B
C++
#ifndef REALM_TEST_UTIL_TEST_FILE_HPP
|
|
#define REALM_TEST_UTIL_TEST_FILE_HPP
|
|
|
|
#include "shared_realm.hpp"
|
|
|
|
struct TestFile : realm::Realm::Config {
|
|
TestFile();
|
|
~TestFile();
|
|
};
|
|
|
|
struct InMemoryTestFile : TestFile {
|
|
InMemoryTestFile();
|
|
};
|
|
|
|
#endif
|