mirror of
https://github.com/miracle-wm-org/miracle-wm.git
synced 2024-11-30 02:09:10 +03:00
23 lines
332 B
C++
23 lines
332 B
C++
#include "tiling_window_tree.h"
|
|
#include <gtest/gtest.h>
|
|
#include <miral/window_management_options.h>
|
|
|
|
using namespace miracle;
|
|
|
|
class TreeTest : public testing::Test
|
|
{
|
|
public:
|
|
TreeTest()
|
|
{
|
|
}
|
|
|
|
void SetUp() override
|
|
{
|
|
}
|
|
|
|
void TearDown() override
|
|
{
|
|
}
|
|
|
|
std::shared_ptr<TilingWindowTree> tree;
|
|
}; |