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. 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 …

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

    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 create the …

  4. 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 ?

  5. 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.

  6. 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 …

  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. 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 …

  9. 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.

  10. Unit Testing C Code - Stack Overflow

    Sep 16, 2008 · One unit testing framework in C is Check; a list of unit testing frameworks in C can be found here and is reproduced below. Depending on how many standard library functions your …