Formatting

This commit is contained in:
Jonas Kvinge
2025-12-08 23:49:48 +01:00
parent 109ff90401
commit 93af866185
179 changed files with 1187 additions and 1269 deletions

View File

@@ -44,8 +44,8 @@ namespace {
class PlaylistTest : public ::testing::Test {
protected:
PlaylistTest()
: playlist_(nullptr, nullptr, nullptr, nullptr, nullptr, 1),
sequence_(nullptr, new DummySettingsProvider) {}
: playlist_(nullptr, nullptr, nullptr, nullptr, nullptr, 1),
sequence_(nullptr, new DummySettingsProvider) {}
void SetUp() override {
playlist_.set_sequence(&sequence_);
@@ -439,7 +439,7 @@ TEST_F(PlaylistTest, ShuffleThenNext) {
// Add 100 items
PlaylistItemPtrList items;
items.reserve(100);
for (int i=0 ; i<100 ; ++i)
for (int i = 0 ; i < 100 ; ++i)
items << MakeMockItemP(u"Item "_s + QString::number(i));
playlist_.InsertItems(items);
@@ -448,7 +448,7 @@ TEST_F(PlaylistTest, ShuffleThenNext) {
// Shuffle until the current index is not at the end
Q_FOREVER {
playlist_.Shuffle();
if (playlist_.current_row() != items.count()-1)
if (playlist_.current_row() != items.count() - 1)
break;
}
@@ -456,21 +456,21 @@ TEST_F(PlaylistTest, ShuffleThenNext) {
EXPECT_EQ(u"Item 0"_s, playlist_.current_item()->EffectiveMetadata().title());
EXPECT_EQ(u"Item 0"_s, playlist_.data(playlist_.index(index, static_cast<int>(Playlist::Column::Title))));
EXPECT_EQ(index, playlist_.last_played_row());
//EXPECT_EQ(index + 1, playlist_.next_row());
// EXPECT_EQ(index + 1, playlist_.next_row());
// Shuffle until the current index *is* at the end
//forever {
//playlist_.Shuffle();
//if (playlist_.current_row() == items.count()-1)
//break;
//}
// forever {
// playlist_.Shuffle();
// if (playlist_.current_row() == items.count()-1)
// break;
// }
index = playlist_.current_row();
EXPECT_EQ(u"Item 0"_s, playlist_.current_item()->EffectiveMetadata().title());
EXPECT_EQ(u"Item 0"_s, playlist_.data(playlist_.index(index, static_cast<int>(Playlist::Column::Title))));
EXPECT_EQ(index, playlist_.last_played_row());
//EXPECT_EQ(-1, playlist_.next_row());
//EXPECT_EQ(index-1, playlist_.previous_row());
// EXPECT_EQ(-1, playlist_.next_row());
// EXPECT_EQ(index-1, playlist_.previous_row());
}