Top "Testing" questions

Software testing is any activity aimed at evaluating an attribute or capability of a program or system and determining that it meets its required results.

How do I run NUnit in debug mode from Visual Studio?

I've recently been building a test framework for a bit of C# I've been working on. I have NUnit set …

c# visual-studio-2008 unit-testing testing nunit
Jest spyOn function called

I'm trying to write a simple test for a simple React component, and I want to use Jest to confirm …

javascript reactjs testing jestjs enzyme
How to check a checkbox in capybara?

I'm using Rspec and Capybara. How can I write a step to check a checkbox? I've tried check by value …

ruby-on-rails ruby testing rspec capybara
Java JUnit: The method X is ambiguous for type Y

I had some tests working fine. Then, I moved it to a different package, and am now getting errors. Here …

java testing junit compiler-errors package
Tool to compare large numbers of PDF files?

I need to compare large count of PDF files for it optical content. Because the PDF files was created on …

testing pdf compare
How to build a jar using maven, ignoring test results?

Actuality when i run tests they fails but i need to run them to get some .class files which are …

java testing maven-2 jar
How can I generate WADL for REST services

I have a web application providing more than 30 REST services (using Jersey) to clients. Is it possible to automatically create …

java rest testing jax-rs wadl
How to simulate a DB for testing (Java)?

I'm programming in Java and my applications are making a lot of use of DB. Hence, it is important for …

java database unit-testing testing jdbc
Override Java System.currentTimeMillis for testing time sensitive code

Is there a way, either in code or with JVM arguments, to override the current time, as presented via System.…

java testing jvm systemtime
How to measure code coverage in Golang?

Has anyone succeeded in generating code coverage for Go unit tests? I can't find a tool for that on the …

unit-testing testing go code-coverage