mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
17 lines
369 B
C++
17 lines
369 B
C++
#include "vendor/catch-2.13.10/catch.hpp"
|
|
|
|
class BigData;
|
|
|
|
// Fixture for repetitive handling of BigData objects.
|
|
struct BigDataTest {
|
|
using BigDataPtr=BigData*;
|
|
|
|
BigData *num;
|
|
|
|
BigDataTest();
|
|
~BigDataTest();
|
|
|
|
BigData **operator &() { return # }
|
|
operator BigDataPtr() const { return num; }
|
|
BigData *operator->() const { return num; }
|
|
};
|