today, when testing Hibernate's additions and deletions, I encountered a problem: there are four test methods in a test class: Add (), search (),
Update () and delete (), but after clicking on a class such as the update () method, the other three methods will execute, initially suspecting that hibernate
Configuration problem, but found all over and did not find where there is a problem, finally understand, this is myeclipse not eclipse,eclipse click Test Class
method, and myeclipse whether or not the test method in the test class is the final result of all
Test methods are executed: There are two solutions: first, point to open the project, then open the test class, right-click a test method, and then [Run as]-[run Configurations]-[test method to select a test that needs to be tested.]
The second: [Window]-[show view]-[outline]-[on the right side of the window will appear the test class and test method, click on a test method]-[run As]-[junit test] is OK.
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
Test Hibernate's JUnit method with MyEclipse to test the reason for always repeating execution