Skip to content

Commit

Permalink
better sources for some perfumes
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Knoedlseder committed Oct 9, 2024
1 parent f8481c5 commit 72ffd45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "The \"org.junit.jupiter.api.assertAll\" is used to group multiple individual assertions together. The advantage of using this method to group the assertions instead of calling them individually is that if one assertion fails, the others are still executed. Therefore, the user gains insight on the results of all tests, instead of only the tests up to the failed assertion, where the thrown exception would otherwise terminate the test execution.",
"detectorClassSimpleName": "AssertAllDetector",
"i18nBaseBundleName": "assertAll",
"sources": ["https://stackoverflow.com/questions/40796756/assertall-vs-multiple-assertions-in-junit5"],
"sources": ["https://www.baeldung.com/junit5-assertall-vs-multiple-assertions"],
"relatedPattern": null,
"additionalInformation": null
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Instead of calling \"System.exit\", which completely terminates the java virtual machine, the \"javax.swing.JFrame.dispose\" method closes the frame and its assigned resources in a more controlled manner. Closing the application this way, one has to make sure to terminate all running threads programmatically. While this may seem like a downside, it ultimately provides the most control, as ongoing processes can be completed before the program is terminated.",
"detectorClassSimpleName": "JFrameDisposeDetector",
"i18nBaseBundleName": "jFrameDispose",
"sources": ["Programmierung II - Uni Passau", "https://stackoverflow.com/questions/13360430/jframe-dispose-vs-system-exit"],
"sources": ["Programmierung II - Uni Passau", "https://docs.oracle.com/javase/8/docs/api/java/awt/Window.html#dispose--"],
"relatedPattern": "BUG",
"additionalInformation": null
}

0 comments on commit 72ffd45

Please sign in to comment.