OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ppapi/tests/test_transport.h" | 5 #include "ppapi/tests/test_transport.h" |
6 | 6 |
7 #include <string.h> | 7 #include <string.h> |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 14 matching lines...) Expand all Loading... |
25 return transport_interface_ && InitTestingInterface(); | 25 return transport_interface_ && InitTestingInterface(); |
26 } | 26 } |
27 | 27 |
28 void TestTransport::RunTest() { | 28 void TestTransport::RunTest() { |
29 RUN_TEST(FirstTransport); | 29 RUN_TEST(FirstTransport); |
30 // TODO(juberti): more Transport tests here... | 30 // TODO(juberti): more Transport tests here... |
31 } | 31 } |
32 | 32 |
33 std::string TestTransport::TestFirstTransport() { | 33 std::string TestTransport::TestFirstTransport() { |
34 // TODO(juberti): actual test | 34 // TODO(juberti): actual test |
35 return ""; | 35 PASS(); |
36 } | 36 } |
OLD | NEW |