Java Unit Test Framework JUnit

Source: Internet
Author: User
Tags java web xunit

  • Java Unit Test Framework JUnit

    JUnit is a unit test framework for the Java language. It was founded by Kent Beck and Erich Gamma, and gradually became the most successful of the Xunit family of Sunit from Kentbeck. JUnit has its own JUnit expansion biosphere. Most Java development environments have integrated JUnit as a unit test tool. Online JAVADOC:HTTP://WW ... More JUnit Information

    Last update: JUnit 4.12 Released, Java Unit Test framework posted 4 month ago

  • C + + Simulation test framework Google mock

    Google Mock is a set of C + + mock frameworks that Google has just open source. Googlemock has been used in more than 100 projects within Google, and has been developed by Zhanyongwan, a Google software engineer (presumably Chinese), inspired by Jmock and Easymock. This framework can be used on Linux,windows and Mac OS x ... More Googlemock Information

  • C Language Unit Test framework CUnit

    Following the success of JUnit Cppunit, a white-box test case Cunit for developing the source code has appeared in the C language environment. Cunit is provided to the user in the form of a static library, which is directly linked to the static library when the user writes the program. It provides a simple unit test framework and provides rich assertion statement support for commonly used data types. ... More Cunit Information

  • Google JS Test

    Google JS Test is a JavaScript unit testing framework running under the V8javascript engine, which is responsible for testing Chrome's fast JS execution speed within Google and is now open for use by the open source project. Google JS Test Main Features: Ultra-fast startup speed and execution time, do not need to run in the browser refreshing and ... More Googlejs Test Information

  • C + + Unit Test Framework Cpptest

    Cpptest is a unit test framework for C + +. CppUnit is much simpler, but the effect is good. The following is a brief comparison of these two powerful tools: the simplicity of creating unit tests and test suites. Both CppUnit and Cpptest create unit tests in the form of class methods, and the classes themselves derive from the test class provided by the tool. However, Cpptest's syntax is slightly ... More cpptest Information

  • Python Unit Test framework Pyunit

    The Python Unit test framework (the Python Unit Testing framework), referred to as Pyunit, is a version of JUnit Python that is designed by the two clever guys of Kentbeck and Erich Gamma. JUnit is also the Java version of the Kent-designed Smalltalk test framework. They are standard test frameworks for their respective languages. ... More Pyunit Information

  • cpputest -C + + unit Test framework

    Cpputest is a full-featured test framework. Cpputest is specifically designed to support the development of embedded software on a variety of operating systems. Cpputest macros are designed so that you don't need to know about C + + or write test cases. This makes it easier for C programmers to use this test framework. Cpputest only uses the main subset of the C + + language, which is a good choice ... More cpputest Information

    Last update: Cpputest Getting Started tutorial posted 3 year ago

  • Test framework based on JUnit extension iTest

    ITest is a lightweight, automated testing framework for major service interfaces such as: Http,soap,json-rpc. The input of parameters, request execution, result parsing, data validation, data preparation and cleanup are all encapsulated, and the data text file is the interface to reduce the difficulty of case writing in the process of automated testing. Data-driven test execution is the box ... More itest Information

  • Flex Unit Test Framework FlexUnit

    FlexUnit can be said to be a copy of JUnit, because they have too much similarity, but to put it bluntly, all unit tests are the same, the main way is to compare the output by the input of the correct results. Although the principle is so simple, but a good unit testing framework, can provide programmers with good convenience, in the flexunit ... More FlexUnit Information

  • PHP test Framework Peridot

    Peridot is a highly extensible, easy-to-use PHP test framework that supports PHP 5.4+. Peridot makes testing more interesting. Developers can create plugins, customize test reports, and more. Features: Flexible test interface Event-driven plug-in architecture makes it easy to add user-defined command-line parameters to easily create custom test reports based on exceptions ... More Peridot Information

    Last update: peridot--extensible, convenient and interesting PHP test framework posted 5 month ago

  • JUnit test Framework Zohhak

    Zohhak-junit parameterized, Zohhak is a parameterized JUnit test framework, and JUnit's own support for parametric testing is a very big soft rib for him, and a time ago there was a known JUnit The params software tries to solve the problem, and Zohhak is another powerful parametric testing framework. Let's take a look at ... More Zohhak Information

    Last update: zohhak--parameterized JUnit Unit Test extensions posted 2 year ago

  • Unit Test Simulation Framework Powermock

    Powermock is also a unit test simulation framework, which is an extension based on other unit test simulation frameworks. By providing a custom class loader and the application of some bytecode tampering techniques, Powermock now supports static methods, construction methods, private methods, and Final methods, as well as the removal of static initialization processes. More Powermock Information

  • android automation Test   robolectirc

    Robolectirc is an Android Program Automation testing tools. Test code: @RunWith (robolectrictestrunner.class) public Class Myactivitytest { @Test  public void Clickingbutton_shouldchangeresultsviewtext () throws Exception {activity activity = ... More ROBOLECTIRC information

  • NoSQL Unit Test Tool Nosqlunit

    Nosqlunit is a JUnit extension that provides tools for unit testing and integration testing for applications that use a NoSQL backend. Use example:@UsingDataSet(locations= "My_data_set.json", Loadstrategy=loadstrategyenum.refresh) @ShouldMatchDataSet (location= "My_expected_data ... More Nosqlunit Information

    Last update: Nosqlunit 0.7.6 released, NoSQL Unit Test posted 2 year ago

  • Android test Framework Robospock

    Robospock is an open-source Android testing framework. Provides a simple way to write BDD behavior-driven development specifications, using groovy voice and supporting the Google Guice library. Robospock incorporates the functions of robolectric and Spock. Example code: DEF "should display Hello text" () {given ... More Robospock Information

  • Python Simulation test Framework Capturemock

    Capturemock provides the capture-replay functionality of the Python simulation, based on the command line and client-server communication. Capturemock's so-called method is the capture-replay method. It observes the interaction of the Code and the simulated subsystem in the user's ' record ' simulation subsystem, and records it in its own format in a text file. When the user ... More Capturemock Information

  • Web Unit Test htmlunit

    Htmlunit is one of JUnit's extended test frameworks. Htmlunit simulates the return document into HTML so that you can work with these documents directly. Htmlunit uses identifiers such as table, form, and so on to process the test document as HTML. It also needs to follow the Java™ test program of the JUNIT test framework structure. ... More Htmlunit Information

    Last update: Htmlunit 2.8 Published, Java Web Unit Test posted 5 year ago

  • PHP test Framework PHPUnit

    PHPUnit is a lightweight PHP testing framework. It is a complete porting of the JUNIT3 series version under PHP5, a member of the Xunit Test framework family (both of which are based on the design of pattern Pioneer Kent Beck) unit testing is the foundation of several modern agile development methodologies, making phpunit a key tool for many large PHP projects. This tool can also be xde ... More PHPUnit Information

    Last update: PHPUnit 4.0.0 released, PHP Unit Test Framework posted 1 year ago

  • C + + Unit Test Framework CppUnit

    CppUnit is an open source project based on LGPL, originally ported from JUnit and is a very good open-source testing framework. CppUnit and JUnit are the main ideas derived from Extreme programming (xprogramming). The main function is to manage unit tests and to automate testing. Test-driven Development (TDD) is based on testing as a development process ... More Cppunit Information

  • Automated test Platform Robot Framework

    The Robot framework is a keyword-driven automated testing framework. The test case is located in the HTML or TSV (tab-separated Values) file, using the keywords implemented in the test library to run the program in the test. Because the robot Framework is flexible and extensible, it is suitable for testing complex software with multiple interfaces: User interface, command line, ...

Java Unit Test Framework JUnit

Related Article

Contact Us

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.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.