#ifndef FLUTTER_SHELL_PLATFORM_EMBEDDER_TESTS_EMBEDDER_TEST_H_
#define FLUTTER_SHELL_PLATFORM_EMBEDDER_TESTS_EMBEDDER_TEST_H_
#include <memory>
#include "flutter/fml/macros.h"
#include "flutter/shell/platform/embedder/tests/embedder_test_context.h"
#include "flutter/testing/testing.h"
#include "flutter/testing/thread_test.h"
namespace flutter {
namespace testing {
class EmbedderTest : public ThreadTest {
public:
EmbedderTest();
~EmbedderTest() override;
std::string GetFixturesDirectory() const;
EmbedderTestContext& GetEmbedderContext();
private:
std::unique_ptr<EmbedderTestContext> embedder_context_;
void SetUp() override;
void TearDown() override;
FML_DISALLOW_COPY_AND_ASSIGN(EmbedderTest);
};
}
}
#endif