Author: keld H. Hansen Translation: cmanlh original address
I. Introduction2. Enter JUnit's paradiseIii. Round class4. Analyze and obtain test cases
JUnit IntroductionJUnit is an open-source project using Java as the development language. It provides a great architecture for unit testing. With JUnit, the Code mentione
I. Integration of JUnit and hamcrest in the IDEAfter you create the project, import the JUnit and hamcrest jar packagesHamcrest-all-1.3.jarJunit-4.12.jarUsing the IDE for IntelliJ idea, right-click on the project, open the opening Module Settings, and add the above two jar packages in the Library tab to use in the programIi. Creating a triangle class for judging trianglesThird, create the corresponding
JUnit Common annotations:
@Before: Initialization method
@After: Freeing Resources
@Test: Test method, where you can test for expected exceptions and time-outs
@Ignore: Ignored test methods
@BeforeClass: For all tests, execute only once and must be static vo
The junit4.x version needs to introduce the following jar packages:Hamcrest-core-1.3.jarJunit-4.12-beta-3.jarCreate a new Calculator class, as follows: Packagecom.pt; Public classCalculate {/*** addition *@paramD1 *@paramD2 *@return */ Public Static DoubleAddDoubleD1,DoubleD2) { returnD1 +D2; } /*** Subtraction *@paramD1 *@paramD2 *@return */ Public Static DoubleDiffDoubleD1,DoubleD2) { returnD1-D2; } /*** Multiplication *@paramD1 *@paramD2 *@return
mobile devices, which makes Android engineers brilliant.3: The advent of the cloud and the popularity of B/s, resulting in the subsequent server-side programming will be very fire, the code will appear refactoring.Second: Common Eclipse Breakpoint debugging1:f5:step into Enter method F6:step over skip F7:step return jumpThe symbol behind the 2:F7 jumps to the first line of the method step to resume:3: Green triangle release Breakpoint or skip to next breakpoint4: Select variable Right---watch:
, will produce dirty data, affecting the correctness of our data is not convenient cycle test, that is, if we delete a record, the next time we can not do this junit test, because the record has been deleted, will be an error. If you do not use transaction rollback, we need to explicitly restore our additions and deletions to the database operation in our code, a
The distance from the last time to do junit monomer test for several months, and sure enough to use, and learn some new things, summed up.
The first is the understanding of the spy, has been used to mock, did not use the spy, so the spy does not understand, recently used a few times, also in Google learning a bit, online said are more written, mock: all Mock;spy: part of the mock; What is called part bu
The spring framework is used in JUnit unit test cases, which I used very directly./** * For test case base classes that need to be used with spring * @author http://www.coderli.com*/@RunWith (Springjunit4classrunner. class = {"/spring/applicationcontext.xml" })publicclass Springtest {}In the course of the test, it w
[This article is from the Sky Cloud-owned blog Park]Brief descriptionUsing JUnit combined with Mockito, coupled with some of the Spingframework's own methods, can be combined to test the controller layer in spring MVC.Before we design the test case, we have to take the logic of the controller's code in-depth and go through the drill-by-layer. The purpose of the w
exceptional cases the statement and branch coverage are difficult to reach 100%, so you need to give reasons for statements and branches that are not running.Module interface test: Refers to the test module through the data flow test, including the module interface, including parameter list, call submodule parameters, full data, file input and output operations
, will produce dirty data, affecting the correctness of our data
Inconvenient cyclic testing, that is, if we delete a record this time, next time we can no longer carry out the JUnit test, because the record has been deleted, will be error.
If we do not use transaction rollback, we need to explicitly restore our additions and deletions to the database operation in the code, will be much more and
Transferred from: Http://www.coderli.com/junit-spring-test-applicationcontext The spring framework is used in JUnit unit test cases, directly as follows. @RunWith (Springjunit4classrunner. Class= {"/spring/applicationcontext.xml" })publicclass Springtest {}You want to get the ApplicationContext instance. You can add a
Org.springframework.test.context.junit4.SpringJUnit4ClassRunner, @RunWith (Springjunit4classrunner.class) @ Contextconfiguration (locations={"Classpath*:applicationcontext.xml"}) public class Springtest extends abstractjunit4springcontexttests {public Then the other test class simply inherits the class, eliminating the need to bind the Application object each time.The next step is how to do unit testing in WebApp and how to combine ormapping fram
Java (5) --- talking about JUnit 4
Junit4
JUnit4 fully introduces Annotation to execute the tests we have written.
1. JUnit 4 does not require the test class to inherit the TestCase parent class.
2. In a Test class, all public and void Methods Modified by the @
Create a Web projectConfiguring the Pom.xml file------equivalent to a jar packageConfigure APPLICATION.YML-----Profile (Spring database connection, Server service, logging log, etc.)Create package (entity, Controller, service, configuration, repository, interceptor, etc.)Small example:Entity:personData Persistence (DAO):ControllerSpring comes with JUnit test @springboottest without having to configure
steps:1. New package (generally named *. Test, the testing class and the development class are placed in different packages)2. New JUnit Text case (generally named *test)3. Select the method you want to test4. You can download the latest jar package, or you can select the system's own: www.junit.orgStatic Introduction:import static org.junit.assert.*;a static cla
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.