About 50 results
Open links in new tab
  1. What are the unit testing frameworks available in java?

    Sep 1, 2015 · @NikhilAgrawal: you don't need any special framework to unit test RESTful webservices, since with JAX-RS those are just regular java classes with some annotations, and the unit test can …

  2. java - How to write a Unit Test? - Stack Overflow

    Jan 21, 2025 · So part of what testing is about actually begins before you write even one line of the SUT. The testing technique of Test Driven Development (TDD) takes that idea to an extreme, and has you …

  3. unit testing - What's the best mock framework for Java? - Stack Overflow

    For Java, see ScalaCheck and the Reductio framework included in the Functional Java library. With automated specification-based testing frameworks, you supply a specification of the method under …

  4. unit testing - Are there any Fake File System frameworks for Java ...

    Apr 6, 2015 · 37 In Java 6 and earlier it is difficult because classes like File and FileInputStream provide no way to dispatch to different "virtual file systems" in Java space. In Java 7, there is support for …

  5. jquery - What are some JavaScript unit testing and mocking …

    Oct 16, 2008 · 20 QUnit jqUnit Writing JavaScript tests with QUnit and jqUnit QUnit is the unit testing framework for the jQuery JavaScript framework. The testing framework itself uses the jQuery library, …

  6. Bit by bit comparison of using Java or Python for unit testing ...

    Aug 20, 2014 · Currently we are in the process of finalizing which language out of Java, Python should be used for Automation using selenium webdriver and a suitable unit testing frameworks. I have …

  7. unit testing - Java test management tools/frameworks? - Stack Overflow

    Apr 13, 2011 · Failing that, you could wrap the test suite idea with something that generates / references an XML file for configuration (if that's really the path you want to take). Considering that it's all in a …

  8. Test and Mock framework for Java and .NET - Stack Overflow

    Jun 2, 2009 · For unit-testing (to drive your tests), JUnit (for Java) and NUnit (for .NET) are the most popular choices. The situation around mocking (or isolation) frameworks is more complicated.

  9. java - Is junit a framework library or unit testing term or both ...

    Mar 15, 2016 · JUnit is the unit testing framework (an alternative to it would be testng). [Do] I have to use some xunit (like junit, TestNG) with powermock or jmockito or other mocking frameworks ?

  10. java - Why use JUnit for testing? - Stack Overflow

    Jun 2, 2012 · JUnit is a unit testing framework for the Java Programming Language. It is important in the test driven development, and is one of a family of unit testing frameworks collectively known as xUnit.