|
|
@ -19,16 +19,18 @@ public class TestEmojiPicker { |
|
|
|
assertNotNull(emojiPicker); |
|
|
|
|
|
|
|
} |
|
|
|
//Test to verify the correct number of emoji buttons in the EmojiPicker |
|
|
|
@Test |
|
|
|
public void testEmojiPickerButtonCount() { |
|
|
|
JTextField textField = new JTextField(); |
|
|
|
|
|
|
|
EmojiPicker emojiPicker = new EmojiPicker(textField); |
|
|
|
|
|
|
|
Component[] components = emojiPicker.getComponents(); |
|
|
|
|
|
|
|
assertEquals(12, components.length); |
|
|
|
|
|
|
|
// Arrange |
|
|
|
JTextField textField = new JTextField(); |
|
|
|
EmojiPicker emojiPicker = new EmojiPicker(textField); |
|
|
|
|
|
|
|
// Act |
|
|
|
Component[] components = emojiPicker.getComponents(); |
|
|
|
|
|
|
|
// Assert |
|
|
|
assertEquals(12, components.length); // 12 buttons for 12 emojis |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|