OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "sandbox/linux/seccomp-bpf-helpers/cons.h" | |
6 | |
7 #include <string> | |
8 | |
9 #include "testing/gtest/include/gtest/gtest.h" | |
10 | |
11 namespace sandbox { | |
12 | |
13 namespace { | |
14 | |
15 std::string Join(Cons<char>::List char_list) { | |
16 std::string res; | |
17 for (Cons<char>::List it = char_list; it; it = it->tail()) { | |
18 res.push_back(it->head()); | |
19 } | |
20 return res; | |
21 } | |
22 | |
23 } // namespace | |
jln (very slow on Chromium)
2014/06/27 01:45:50
It's perfectly ok to have TEST() in the anonymous
mdempsky
2014/06/28 00:36:42
Oops, done.
| |
24 | |
25 TEST(ConsListTest, Basic) { | |
26 Cons<char>::List ba = | |
27 Cons<char>::Make('b', Cons<char>::Make('a', Cons<char>::List())); | |
28 EXPECT_EQ("ba", Join(ba)); | |
29 | |
30 Cons<char>::List cba = Cons<char>::Make('c', ba); | |
31 Cons<char>::List dba = Cons<char>::Make('d', ba); | |
32 EXPECT_EQ("cba", Join(cba)); | |
33 EXPECT_EQ("dba", Join(dba)); | |
34 } | |
35 | |
36 } // namespace sandbox | |
OLD | NEW |