Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 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 "config.h" | |
| 6 #include "wtf/ASCIICType.h" | |
| 7 | |
| 8 #include <gtest/gtest.h> | |
| 9 | |
| 10 TEST(WTF, ASCIICaseFoldTable) | |
|
tkent
2015/06/12 07:55:47
Please change to:
namespace WTF {
TEST(ASCIICTyp
| |
| 11 { | |
| 12 LChar symbol = 0xff; | |
| 13 while (symbol--) { | |
| 14 EXPECT_EQ(WTF::toASCIILower<LChar>(symbol), WTF::ASCIICaseFoldTable[symb ol]); | |
| 15 } | |
| 16 } | |
| OLD | NEW |