Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
teletha committed Nov 9, 2024
1 parent 28b7a67 commit 34551f5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/test/java/viewtify/ui/helper/PlaceholderHelperTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,24 +18,24 @@
import viewtify.JavaFXTester;
import viewtify.ui.Providers;
import viewtify.ui.UIComboBox;
import viewtify.ui.UIText;

public class PlaceholderHelperTest extends JavaFXTester {
@Test
void text1() {
System.out.println("OK");
UIComboBox ui = new UIComboBox(null);
System.out.println("text1");
ui.placeholder("TEST");
assert ui.placeholderProperty().getValue().equals("TEST");
}

@Test
void text2() {
UIText ui = new UIText(null, String.class);
System.out.println("text2");
ui.placeholder("TEST");
assert ui.placeholderProperty().getValue().equals("TEST");
}
// @Test
// void text2() {
// UIText ui = new UIText(null, String.class);
// System.out.println("text2");
// ui.placeholder("TEST");
// assert ui.placeholderProperty().getValue().equals("TEST");
// }

@Disabled
@ParameterizedTest
Expand Down

0 comments on commit 34551f5

Please sign in to comment.