ladybird/Userland/Libraries/LibTest
Max Wipfli fc6d051dfd AK+Everywhere: Add and use static APIs for LexicalPath
The LexicalPath instance methods dirname(), basename(), title() and
extension() will be changed to return StringView const& in a further
commit. Due to this, users creating temporary LexicalPath objects just
to call one of those getters will recieve a StringView const& pointing
to a possible freed buffer.

To avoid this, static methods for those APIs have been added, which will
return a String by value to avoid those problems. All cases where
temporary LexicalPath objects have been used as described above haven
been changed to use the static APIs.
2021-06-30 11:13:54 +02:00
..
CMakeLists.txt LibTest: Move Crash testing facility from crash.cpp to LibTest 2021-05-08 00:04:10 +01:00
CrashTest.cpp LibTest: Convert Crash test runner to outln(..) 2021-05-08 00:04:10 +01:00
CrashTest.h LibTest: Expose new EXPECT_CRASH(..) macro for unit test assertions 2021-05-08 00:04:10 +01:00
JavaScriptTestRunner.h Userland+Tests: Split out generic test runner from JS TestRunner 2021-06-30 08:18:28 +04:30
JavaScriptTestRunnerMain.cpp AK+Everywhere: Add and use static APIs for LexicalPath 2021-06-30 11:13:54 +02:00
Macros.h LibTest: Don't try to pass stderr to warnln 2021-06-11 18:14:11 +04:30
Results.h Base+Utilities: Add run-tests program to run system tests with LibTest 2021-06-30 08:18:28 +04:30
TestCase.h AK+Userland: Move AK/TestSuite.h into LibTest and rework Tests' CMake 2021-04-25 09:36:49 +02:00
TestMain.cpp AK+Userland: Move AK/TestSuite.h into LibTest and rework Tests' CMake 2021-04-25 09:36:49 +02:00
TestRunner.h Userland+Tests: Split out generic test runner from JS TestRunner 2021-06-30 08:18:28 +04:30
TestSuite.cpp AK+Userland: Move AK/TestSuite.h into LibTest and rework Tests' CMake 2021-04-25 09:36:49 +02:00
TestSuite.h AK+Userland: Move AK/TestSuite.h into LibTest and rework Tests' CMake 2021-04-25 09:36:49 +02:00