File: sqlite.h

package info (click to toggle)
dqlite 1.18.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,364 kB
  • sloc: ansic: 57,460; makefile: 336; sh: 243
file content (17 lines) | stat: -rw-r--r-- 387 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Global SQLite configuration. */

#ifndef TEST_SQLITE_H
#define TEST_SQLITE_H

#include "munit.h"

/* Setup SQLite global state. */
void test_sqlite_setup(const MunitParameter params[]);

/* Teardown SQLite global state. */
void test_sqlite_tear_down(void);

#define SETUP_SQLITE test_sqlite_setup(params);
#define TEAR_DOWN_SQLITE test_sqlite_tear_down();

#endif /* TEST_SQLITE_H */