Skip to content

Commit

Permalink
Implement missing Signals test
Browse files Browse the repository at this point in the history
  • Loading branch information
Schweini07 committed Mar 30, 2024
1 parent 9729357 commit 41644f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Widgets/EditBoxSlider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ TEST_CASE("[editBoxSlider]")
{
tgui::EditBoxSlider::Ptr editBoxSlider = tgui::EditBoxSlider::create(0, 10, 5);

/* SECTION("Signals")
SECTION("Signals")
{
editBoxSlider->onValueChange([](){});
editBoxSlider->onValueChange([](float){});

REQUIRE_NOTHROW(tgui::Widget::Ptr(editBoxSlider)->getSignal("ValueChanged").connect([]{}));
} */
}

SECTION("WidgetType")
{
Expand Down

0 comments on commit 41644f5

Please sign in to comment.