blob: 3c2ca6ec42e0e9c88a0e4f79c947b9344d8a8d57 [file] [log] [blame]
// Copyright (c) 2012 The Chromium 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 PPAPI_TESTS_TEST_EMPTY_H_
#define PPAPI_TESTS_TEST_EMPTY_H_
#include <string>
#include "ppapi/tests/test_case.h"
class TestEmpty : public TestCase {
public:
explicit TestEmpty(TestingInstance* instance);
// TestCase implementation.
virtual bool Init();
virtual void RunTests(const std::string& filter);
private:
std::string TestNaClLoad();
};
#endif // PPAPI_TESTS_TEST_EMPTY_H_