#ifndef REMOTING_BASE_CHROMEOS_REMOTING_TEST_SUITE_H_
#define REMOTING_BASE_CHROMEOS_REMOTING_TEST_SUITE_H_
#include "chromeos/ash/components/test/ash_test_suite.h"
namespace remoting {
class ChromeOSRemotingTestSuite : public ash::AshTestSuite {
public:
ChromeOSRemotingTestSuite(int argc, char** argv);
ChromeOSRemotingTestSuite(const ChromeOSRemotingTestSuite&) = delete;
ChromeOSRemotingTestSuite& operator=(const ChromeOSRemotingTestSuite&) =
delete;
~ChromeOSRemotingTestSuite() override;
protected:
void Initialize() override;
void Shutdown() override;
};
}
#endif