Chromium Code Reviews| Index: ppapi/tests/test_empty.cc |
| =================================================================== |
| --- ppapi/tests/test_empty.cc (revision 0) |
| +++ ppapi/tests/test_empty.cc (working copy) |
| @@ -0,0 +1,23 @@ |
| +// 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 |
| + |
| +#include "ppapi/tests/test_empty.h" |
| +#include "ppapi/tests/testing_instance.h" |
| + |
| +REGISTER_TEST_CASE(Empty); |
| +TestEmpty::TestEmpty(TestingInstance* instance) |
| + : TestCase(instance) { |
| +} |
| + |
| +bool TestEmpty::Init() { |
| + return true; |
| +} |
| + |
| +void TestEmpty::RunTests(const std::string& filter) { |
| + RUN_TEST(NaClLoad, filter); |
| +} |
| + |
| +std::string TestEmpty::TestNaClLoad() { |
|
brettw
2012/03/13 05:57:49
Can you add a quick comment here about why this ex
halyavin
2012/03/13 12:48:27
Done.
|
| + PASS(); |
| +} |