blob: 6a9c45b15cb9ca4c16938cfb3aef4a9fcaa51c28 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PERIDOT_BIN_LEDGER_TESTS_CLOUD_PROVIDER_VALIDATION_TEST_H_
#define PERIDOT_BIN_LEDGER_TESTS_CLOUD_PROVIDER_VALIDATION_TEST_H_
#include <fuchsia/ledger/cloud/cpp/fidl.h>
#include <gtest/gtest.h>
#include <lib/component/cpp/startup_context.h>
#include <lib/fxl/macros.h>
#include <lib/gtest/test_loop_fixture.h>
#include "peridot/bin/ledger/tests/cloud_provider/types.h"
namespace cloud_provider {
class ValidationTest : public ::gtest::TestLoopFixture {
public:
ValidationTest();
~ValidationTest() override;
void SetUp() override;
protected:
CloudProviderSyncPtr cloud_provider_;
private:
std::unique_ptr<component::StartupContext> startup_context_;
FXL_DISALLOW_COPY_AND_ASSIGN(ValidationTest);
};
} // namespace cloud_provider
#endif // PERIDOT_BIN_LEDGER_TESTS_CLOUD_PROVIDER_VALIDATION_TEST_H_