Using JUnit for unit testing, first introduced the JUnit jar, which is configured as follows.@RunWith (Springjunit4classrunner.class) @ContextConfiguration ("Classpath:factory_bean.xml") public class Mainapp {@ Testpublic void Demon1 () {ApplicationContext context = new Classpathxmlapplicationcontext (New string[]{"Factory_ Bean.xml "}); person P1 = Context.getbean ("Chinese", person.class); System.out.pri
Gee, it's 12 o ' Night. Summary if there are errors in the place to welcome correct, my method does not introduce the jar, there are other ways to introduce the jar package on the net, not very understand, nor much to see.Some of the key basic rules:Let's look at the specific steps of Eclipse:Create a new package while creating a test class:New-->other...-->When all this is done, it can be detected. Right-click-->run as--->
Before testing, you need to import JUnit's two packages, respectivelyjunit:4.12;hamcrest-core:1.11. Basic Test Label@Test, @Before, @After2. Group TestingSometimes multiple test files, if one goes to execute is certainly a waste of time, then how to do it?If there are Firtest.java,sectest.java now, there are multiple methods in each
Remember the previous contact with JUnit, the test of the public method is very fluent, and the private method is also called in these public methods, will test coverage.
Because is the new class, the new method, makes the data step by step the cover to run down, really as long as has the patience, can be done.
But as the project gradually deepened, due to pers
JUnit best practices:
1. Create a separate unit to test the SRC folder. The package structure is consistent with the official SRC folder. In this way, the generated class file and the official file are placed in the same place, this facilitates package reference when writing test classes.
2. If it is green, it indicates that the
In the Java project development process, it is sometimes necessary to test the private methods of the class, while private methods cannot be invoked directly, but the reflection mechanism can be used to invoke the following example:
@Test public
void Testgetelectiontimeout () throws Exception {
int conftimeout = Conf1.getint (" Raft.election.timeout ")
B_method () {System.out.println ("I-M in Method B");} @Test (priority=6) public void A_method () {System.out.println ("I-M in Method a");} @Test (priority=0) public void E_method () {System.out.println ("I-M in Method E");} @Test (priority=6) public void D_method () {System.out.println ("I-M in Method D");}}Output:I ' m in the method B I ' m in method C I ' m in
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.