@Test
- Unique ID:
[engine:<engine-name>][class:<quantified-class-name>]/[method:<method-name>(<quantified-class-name>...)]
- Legacy Name:
<method-name>(<simple-class-name>...)
- Unique ID:
@ParameterizedTest
- Unique ID:
[engine:<engine-name>][class:<quantified-class-name>]/[test-timplate:<method-name>(<quantified-class-name>...)]/[test-template-invocation:<parameter-set-number>]
- Unique ID:
- Legacy Name:
(...)[]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package me.coley.j2h; | |
import javafx.application.Application; | |
import javafx.scene.Scene; | |
import javafx.scene.control.SplitPane; | |
import javafx.scene.control.TextArea; | |
import javafx.stage.Stage; | |
// https://mvnrepository.com/artifact/org.apache.commons/commons-text | |
import org.apache.commons.text.StringEscapeUtils; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javafx.animation.Animation.Status; | |
import javafx.animation.Interpolator; | |
import javafx.animation.Transition; | |
import javafx.event.EventHandler; | |
import javafx.scene.Node; | |
import javafx.scene.control.ScrollPane; | |
import javafx.scene.input.ScrollEvent; | |
import javafx.scene.layout.VBox; | |
import javafx.util.Duration; |
NewerOlder