summaryrefslogtreecommitdiff
path: root/AK/Tests
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-09-06 15:34:26 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-09-06 15:36:54 +0200
commit73fdbba59c6b91a0ef1789d3f37b703215ea7cef (patch)
tree446525a58ccef2c66a10b15539aa984163c82cff /AK/Tests
parentb4a2bb9383d2d376a603ff33105b0af5eb0cd0b1 (diff)
downloadserenity-73fdbba59c6b91a0ef1789d3f37b703215ea7cef.zip
AK: Rename <AK/AKString.h> to <AK/String.h>
This was a workaround to be able to build on case-insensitive file systems where it might get confused about <string.h> vs <String.h>. Let's just not support building that way, so String.h can have an objectively nicer name. :^)
Diffstat (limited to 'AK/Tests')
-rw-r--r--AK/Tests/TestFileSystemPath.cpp2
-rw-r--r--AK/Tests/TestFixedArray.cpp2
-rw-r--r--AK/Tests/TestHashMap.cpp2
-rw-r--r--AK/Tests/TestJSON.cpp2
-rw-r--r--AK/Tests/TestNonnullRefPtr.cpp2
-rw-r--r--AK/Tests/TestOptional.cpp2
-rw-r--r--AK/Tests/TestQueue.cpp2
-rw-r--r--AK/Tests/TestRefPtr.cpp2
-rw-r--r--AK/Tests/TestString.cpp2
-rw-r--r--AK/Tests/TestStringView.cpp2
-rw-r--r--AK/Tests/TestVector.cpp2
-rw-r--r--AK/Tests/TestWeakPtr.cpp2
12 files changed, 12 insertions, 12 deletions
diff --git a/AK/Tests/TestFileSystemPath.cpp b/AK/Tests/TestFileSystemPath.cpp
index e019f53b16..3280cddb50 100644
--- a/AK/Tests/TestFileSystemPath.cpp
+++ b/AK/Tests/TestFileSystemPath.cpp
@@ -1,6 +1,6 @@
#include <AK/TestSuite.h>
-#include <AK/AKString.h>
+#include <AK/String.h>
#include <AK/FileSystemPath.h>
TEST_CASE(construct)
diff --git a/AK/Tests/TestFixedArray.cpp b/AK/Tests/TestFixedArray.cpp
index 92fe01b24c..db6ec3b68e 100644
--- a/AK/Tests/TestFixedArray.cpp
+++ b/AK/Tests/TestFixedArray.cpp
@@ -1,6 +1,6 @@
#include <AK/TestSuite.h>
-#include <AK/AKString.h>
+#include <AK/String.h>
#include <AK/FixedArray.h>
TEST_CASE(construct)
diff --git a/AK/Tests/TestHashMap.cpp b/AK/Tests/TestHashMap.cpp
index 774e8e5a31..2b480e6d2b 100644
--- a/AK/Tests/TestHashMap.cpp
+++ b/AK/Tests/TestHashMap.cpp
@@ -1,6 +1,6 @@
#include <AK/TestSuite.h>
-#include <AK/AKString.h>
+#include <AK/String.h>
#include <AK/HashMap.h>
TEST_CASE(construct)
diff --git a/AK/Tests/TestJSON.cpp b/AK/Tests/TestJSON.cpp
index 3f4279ca30..30cef3fd3e 100644
--- a/AK/Tests/TestJSON.cpp
+++ b/AK/Tests/TestJSON.cpp
@@ -1,6 +1,6 @@
#include <AK/TestSuite.h>
-#include <AK/AKString.h>
+#include <AK/String.h>
#include <AK/HashMap.h>
#include <AK/JsonArray.h>
#include <AK/JsonObject.h>
diff --git a/AK/Tests/TestNonnullRefPtr.cpp b/AK/Tests/TestNonnullRefPtr.cpp
index 9012206586..a42e5cdcdd 100644
--- a/AK/Tests/TestNonnullRefPtr.cpp
+++ b/AK/Tests/TestNonnullRefPtr.cpp
@@ -1,7 +1,7 @@
#include <AK/TestSuite.h>
#include <AK/NonnullRefPtr.h>
-#include <AK/AKString.h>
+#include <AK/String.h>
struct Object : public RefCounted<Object> {
int x;
diff --git a/AK/Tests/TestOptional.cpp b/AK/Tests/TestOptional.cpp
index 5ca2fe4dfc..1807f96256 100644
--- a/AK/Tests/TestOptional.cpp
+++ b/AK/Tests/TestOptional.cpp
@@ -1,6 +1,6 @@
#include <AK/TestSuite.h>
-#include <AK/AKString.h>
+#include <AK/String.h>
#include <AK/Optional.h>
TEST_CASE(basic_optional)
diff --git a/AK/Tests/TestQueue.cpp b/AK/Tests/TestQueue.cpp
index 620f7f9634..066a29bf10 100644
--- a/AK/Tests/TestQueue.cpp
+++ b/AK/Tests/TestQueue.cpp
@@ -1,6 +1,6 @@
#include <AK/TestSuite.h>
-#include <AK/AKString.h>
+#include <AK/String.h>
#include <AK/Queue.h>
TEST_CASE(construct)
diff --git a/AK/Tests/TestRefPtr.cpp b/AK/Tests/TestRefPtr.cpp
index b01df43c19..5283e8d8fe 100644
--- a/AK/Tests/TestRefPtr.cpp
+++ b/AK/Tests/TestRefPtr.cpp
@@ -1,7 +1,7 @@
#include <AK/TestSuite.h>
#include <AK/NonnullRefPtr.h>
-#include <AK/AKString.h>
+#include <AK/String.h>
struct Object : public RefCounted<Object> {
int x;
diff --git a/AK/Tests/TestString.cpp b/AK/Tests/TestString.cpp
index db0d1d947a..9a427d302e 100644
--- a/AK/Tests/TestString.cpp
+++ b/AK/Tests/TestString.cpp
@@ -1,6 +1,6 @@
#include <AK/TestSuite.h>
-#include <AK/AKString.h>
+#include <AK/String.h>
TEST_CASE(construct_empty)
{
diff --git a/AK/Tests/TestStringView.cpp b/AK/Tests/TestStringView.cpp
index 06c2c56589..87d35263a3 100644
--- a/AK/Tests/TestStringView.cpp
+++ b/AK/Tests/TestStringView.cpp
@@ -1,6 +1,6 @@
#include <AK/TestSuite.h>
-#include <AK/AKString.h>
+#include <AK/String.h>
TEST_CASE(construct_empty)
{
diff --git a/AK/Tests/TestVector.cpp b/AK/Tests/TestVector.cpp
index 1ad7aa7c26..4d753dc011 100644
--- a/AK/Tests/TestVector.cpp
+++ b/AK/Tests/TestVector.cpp
@@ -1,6 +1,6 @@
#include <AK/TestSuite.h>
-#include <AK/AKString.h>
+#include <AK/String.h>
#include <AK/NonnullOwnPtrVector.h>
#include <AK/OwnPtr.h>
#include <AK/Vector.h>
diff --git a/AK/Tests/TestWeakPtr.cpp b/AK/Tests/TestWeakPtr.cpp
index 2a59e88fff..1fb1691054 100644
--- a/AK/Tests/TestWeakPtr.cpp
+++ b/AK/Tests/TestWeakPtr.cpp
@@ -1,5 +1,5 @@
#include <AK/TestSuite.h>
-#include <AK/AKString.h>
+#include <AK/String.h>
#include <AK/Weakable.h>
#include <AK/WeakPtr.h>