Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/GSL.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJordan Maples [MSFT] <49793787+JordanMaples@users.noreply.github.com>2020-10-30 03:38:48 +0300
committerGitHub <noreply@github.com>2020-10-30 03:38:48 +0300
commita150aaa4ed355e88834877c9f39eadd4526e3b8f (patch)
tree44e9501ca637ff643f5a69c6bdcad49aa6abf5ca /tests
parente8978c01abe375ec2f704411fdab02401ea63ae5 (diff)
renaming main logic files. Added warning message of the removal and include passthrough. Renamed includes in the source files. Ran Clang-Format (#946)
Header rename
Diffstat (limited to 'tests')
-rw-r--r--tests/algorithm_tests.cpp2
-rw-r--r--tests/assertion_tests.cpp2
-rw-r--r--tests/at_tests.cpp2
-rw-r--r--tests/byte_tests.cpp2
-rw-r--r--tests/multi_span_tests.cpp4
-rw-r--r--tests/span_compatibility_tests.cpp2
-rw-r--r--tests/span_ext_tests.cpp2
-rw-r--r--tests/span_tests.cpp4
-rw-r--r--tests/strided_span_tests.cpp4
-rw-r--r--tests/string_span_tests.cpp2
-rw-r--r--tests/utils_tests.cpp4
11 files changed, 15 insertions, 15 deletions
diff --git a/tests/algorithm_tests.cpp b/tests/algorithm_tests.cpp
index ec9b2d1..0f209ac 100644
--- a/tests/algorithm_tests.cpp
+++ b/tests/algorithm_tests.cpp
@@ -15,7 +15,7 @@
///////////////////////////////////////////////////////////////////////////////
#include <gtest/gtest.h>
-#include <gsl/gsl_algorithm> // for copy
+#include <gsl/algorithm> // for copy
#include <gsl/span> // for span
#include <array> // for array
#include <cstddef> // for size_t
diff --git a/tests/assertion_tests.cpp b/tests/assertion_tests.cpp
index c45b00c..6b5fb0b 100644
--- a/tests/assertion_tests.cpp
+++ b/tests/assertion_tests.cpp
@@ -15,7 +15,7 @@
///////////////////////////////////////////////////////////////////////////////
#include <gtest/gtest.h>
-#include <gsl/gsl_assert> // for fail_fast (ptr only), Ensures, Expects
+#include <gsl/assert> // for fail_fast (ptr only), Ensures, Expects
using namespace gsl;
diff --git a/tests/at_tests.cpp b/tests/at_tests.cpp
index be2c7b8..1285139 100644
--- a/tests/at_tests.cpp
+++ b/tests/at_tests.cpp
@@ -16,7 +16,7 @@
#include <gtest/gtest.h>
-#include <gsl/gsl_util> // for at
+#include <gsl/util> // for at
#include <array> // for array
#include <cstddef> // for size_t
diff --git a/tests/byte_tests.cpp b/tests/byte_tests.cpp
index f2850ad..2a86cac 100644
--- a/tests/byte_tests.cpp
+++ b/tests/byte_tests.cpp
@@ -16,7 +16,7 @@
#include <gtest/gtest.h>
-#include <gsl/gsl_byte> // for to_byte, to_integer, byte, operator&, ope...
+#include <gsl/byte> // for to_byte, to_integer, byte, operator&, ope...
using namespace std;
using namespace gsl;
diff --git a/tests/multi_span_tests.cpp b/tests/multi_span_tests.cpp
index 32dbf94..9f93315 100644
--- a/tests/multi_span_tests.cpp
+++ b/tests/multi_span_tests.cpp
@@ -16,8 +16,8 @@
#include <gtest/gtest.h>
-#include <gsl/gsl_byte> // for byte
-#include <gsl/gsl_util> // for narrow_cast
+#include <gsl/byte> // for byte
+#include <gsl/util> // for narrow_cast
#include <gsl/multi_span> // for multi_span, contiguous_span_iterator, dim
#include <algorithm> // for fill, for_each
diff --git a/tests/span_compatibility_tests.cpp b/tests/span_compatibility_tests.cpp
index 5035687..361db84 100644
--- a/tests/span_compatibility_tests.cpp
+++ b/tests/span_compatibility_tests.cpp
@@ -16,7 +16,7 @@
#include <gtest/gtest.h>
-#include <gsl/gsl_byte> // for byte
+#include <gsl/byte> // for byte
#include <gsl/span> // for span, span_iterator, operator==, operator!=
#include <array> // for array
diff --git a/tests/span_ext_tests.cpp b/tests/span_ext_tests.cpp
index d413e03..4f07188 100644
--- a/tests/span_ext_tests.cpp
+++ b/tests/span_ext_tests.cpp
@@ -16,7 +16,7 @@
#include <gtest/gtest.h>
-#include <gsl/gsl_util> // for narrow_cast, at
+#include <gsl/util> // for narrow_cast, at
#include <gsl/span_ext> // for operator==, operator!=, make_span
#include <array> // for array
diff --git a/tests/span_tests.cpp b/tests/span_tests.cpp
index 6caaeea..b845d07 100644
--- a/tests/span_tests.cpp
+++ b/tests/span_tests.cpp
@@ -16,8 +16,8 @@
#include <gtest/gtest.h>
-#include <gsl/gsl_byte> // for byte
-#include <gsl/gsl_util> // for narrow_cast, at
+#include <gsl/byte> // for byte
+#include <gsl/util> // for narrow_cast, at
#include <gsl/span> // for span, span_iterator, operator==, operator!=
#include <array> // for array
diff --git a/tests/strided_span_tests.cpp b/tests/strided_span_tests.cpp
index 5a18f1b..67b23eb 100644
--- a/tests/strided_span_tests.cpp
+++ b/tests/strided_span_tests.cpp
@@ -15,8 +15,8 @@
///////////////////////////////////////////////////////////////////////////////
#include <gtest/gtest.h>
-#include <gsl/gsl_byte> // for byte
-#include <gsl/gsl_util> // for narrow_cast
+#include <gsl/byte> // for byte
+#include <gsl/util> // for narrow_cast
#include <gsl/multi_span> // for strided_span, index, multi_span, strided_...
#include <iostream> // for size_t
diff --git a/tests/string_span_tests.cpp b/tests/string_span_tests.cpp
index 7a9f7fb..3c919d0 100644
--- a/tests/string_span_tests.cpp
+++ b/tests/string_span_tests.cpp
@@ -16,7 +16,7 @@
#include <gtest/gtest.h>
-#include <gsl/gsl_assert> // for Expects, fail_fast (ptr only)
+#include <gsl/assert> // for Expects, fail_fast (ptr only)
#include <gsl/pointers> // for owner
#include <gsl/span> // for span, dynamic_extent
#include <gsl/string_span> // for basic_string_span, operator==, ensure_z
diff --git a/tests/utils_tests.cpp b/tests/utils_tests.cpp
index 430788e..74dc990 100644
--- a/tests/utils_tests.cpp
+++ b/tests/utils_tests.cpp
@@ -16,8 +16,8 @@
#include <gtest/gtest.h>
-#include <gsl/gsl_util> // finally, narrow_cast
-#include <gsl/gsl_narrow> // for narrow, narrowing_error
+#include <gsl/util> // finally, narrow_cast
+#include <gsl/narrow> // for narrow, narrowing_error
#include <algorithm> // for move
#include <functional> // for reference_wrapper, _Bind_helper<>::type
#include <limits> // for numeric_limits