{{theTime}}

Search This Blog

Total Pageviews

initializationError(org.junit.runner.manipulation.Filter) java.lang.Exception: No tests found matching

Error:

initializationError(org.junit.runner.manipulation.Filter) java.lang.Exception: No tests found matching 

Cause:

This error throws when no test methods exists to run junit.  If you use junit4, add @Test annotation and rerun the test.  Prior to junit4, create a test method starting with "test".

1 comment:

Eshu said...
This comment has been removed by the author.

Java Script GET request Sample Code

fetch(' https://api.public.com/api ')   .then(response => response.json())   .then(data => console.log(data))   .catch(error =...