Use std::chrono::high_resolution_clock for folly::Benchmark
[folly.git] / folly / test / AsciiCaseInsensitiveTest.cpp
index 2a357b0b7d1ebe138f0a7765bb4ad80459918570..236b8e3144991677a216b5f5d54223d603306a9c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2014 Facebook, Inc.
+ * Copyright 2017 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * limitations under the License.
  */
 
-#include "folly/Range.h"
+#include <folly/Range.h>
 
-#include <gtest/gtest.h>
+#include <folly/portability/GFlags.h>
+#include <folly/portability/GTest.h>
 #include <algorithm>
 
 using namespace std;
@@ -32,6 +33,6 @@ TEST(CaseInsensitiveMatch, CompareWithLegacy) {
 
 int main(int argc, char** argv) {
   testing::InitGoogleTest(&argc, argv);
-  google::ParseCommandLineFlags(&argc, &argv, true);
+  gflags::ParseCommandLineFlags(&argc, &argv, true);
   return RUN_ALL_TESTS();
 }