https://github.com/knlsharma/junit-testing-
Here we are using Junit to test the code efficiency in different scenes.
https://github.com/knlsharma/junit-testing-
example-code junit
Last synced: 1 day ago
JSON representation
Here we are using Junit to test the code efficiency in different scenes.
- Host: GitHub
- URL: https://github.com/knlsharma/junit-testing-
- Owner: Knlsharma
- License: other
- Created: 2018-07-27T13:02:06.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-04T16:13:11.000Z (almost 7 years ago)
- Last Synced: 2025-04-30T20:15:05.401Z (5 months ago)
- Topics: example-code, junit
- Language: Java
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: License.txt
Awesome Lists containing this project
README
# Junit-Testing-
Here we are using Junit to test the code efficiency in different scenes.JUnit tutorial provides basic and advanced concepts of unit testing in java with examples.
It is an open-source testing framework for java programmers. The java programmer can create test cases and test his/her own code.
It is one of the unit testing framework. Current version is junit 4.
To perform unit testing, we need to create test cases. The unit test case is a code which ensures that the program logic works as expected.
The org.junit package contains many interfaces and classes for junit testing such as Assert, Test, Before, After etc.
# Required jar files
You need to load junit4.jar and hamcrest-core.jar files.