瀏覽代碼

Replace namespace usages by dedicated using in time test module

Patrick-Christopher Mattulat 1 年之前
父節點
當前提交
49d2515382
共有 1 個文件被更改,包括 4 次插入3 次删除
  1. 4 3
      test/cases/time/DateTest.cpp

+ 4 - 3
test/cases/time/DateTest.cpp

@@ -11,9 +11,10 @@
 #include <ls-std/ls-std-time.hpp>
 #include <regex>
 
-using namespace ls::std::time;
-using namespace ::std;
-using namespace ::testing;
+using ls::std::time::Date;
+using std::regex;
+using std::string;
+using testing::Test;
 
 namespace
 {