mirror of
https://github.com/hyprwm/hyprutils.git
synced 2025-12-20 17:30:05 +01:00
11 lines
247 B
C++
11 lines
247 B
C++
|
|
#include <hyprutils/string/VarList.hpp>
|
||
|
|
|
||
|
|
#include <gtest/gtest.h>
|
||
|
|
|
||
|
|
using namespace Hyprutils::String;
|
||
|
|
|
||
|
|
TEST(String, varlist) {
|
||
|
|
CVarList list("hello world!", 0, 's', true);
|
||
|
|
EXPECT_EQ(list[0], "hello");
|
||
|
|
EXPECT_EQ(list[1], "world!");
|
||
|
|
}
|