Skip to content

Commit b58c80d

Browse files
committed
Test
1 parent 8f3a952 commit b58c80d

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

src/main/java/com/example/HelloModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ public class HelloModel {
1010
public String getGreeting() {
1111
String javaVersion = System.getProperty("java.version");
1212
String javafxVersion = System.getProperty("javafx.version");
13-
return "Hello, JavaFX " + javafxVersion + ", running on Java " + javaVersion + ".";
13+
return "Hello, JavaFX " + javafxVersion + ", running on Java " + javaVersion + ". Wow!";
1414
}
1515
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package com.example;
2+
3+
import org.assertj.core.api.Assertions;
4+
import org.junit.jupiter.api.Test;
5+
6+
import static org.junit.jupiter.api.Assertions.*;
7+
8+
class HelloModelTest {
9+
@Test
10+
public void fail() {
11+
Assertions.fail();
12+
}
13+
}

0 commit comments

Comments
 (0)