2016-01-26 18:33:53 +00:00
|
|
|
#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();
|
|
|
|
};
|
|
|
|
|
2016-03-10 19:02:59 +00:00
|
|
|
void advance_and_notify(realm::Realm& realm);
|
|
|
|
|
2016-01-26 18:33:53 +00:00
|
|
|
#endif
|