Chromium Code Reviews| 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 "chrome_elf/chrome_elf_util.h" | |
| 6 | |
| 7 #include "testing/gtest/include/gtest/gtest.h" | |
| 8 #include "testing/platform_test.h" | |
| 9 | |
| 10 TEST(ChromeElfUtilTest, CanaryTest) { | |
| 11 EXPECT_TRUE(IsCanary(L"C:\\Users\\user\\AppData\\Local\\Google\\Chrome SxS")); | |
| 12 EXPECT_FALSE(IsCanary(L"C:\\Users\\user\\AppData\\Local\\Google\\Chrome")); | |
| 13 EXPECT_FALSE(IsCanary(L"C:\\Users\\user\\AppData\\Local\\Chromium")); | |
| 14 } | |
|
grt (UTC plus 2)
2014/02/13 03:58:26
test the other helper functions, too? base/test/te
Cait (Slow)
2014/02/14 01:17:02
Done
| |
| OLD | NEW |