beegfs/fsck/tests/TestTable.h
2025-08-10 01:34:16 +02:00

21 lines
313 B
C++

#ifndef TESTTABLE_H_
#define TESTTABLE_H_
#include <database/Table.h>
#include "FlatTest.h"
#include <boost/scoped_ptr.hpp>
#include <gtest/gtest.h>
class TestTable : public FlatTest
{
public:
void SetUp();
void TearDown();
protected:
boost::scoped_ptr<Table<Data> > table;
};
#endif