Re: Integration tests in NetBeans and module-info
I too searched for a solution in my case with TestNG. I did not want to contaminate the module.info with test lines that had to be edited out once testing was passed successfully. Defeats one object of black box integration testing adding a risk that an inadvertent change crept in. My solution was
Integration tests in NetBeans and module-info
Hi all, I use NB 11.0 and I work on JPMS module with integrations tests. My folder structure is like this: . |-- pom.xml `-- src |-- it | `-- java | `-- com | `-- soebes | `-- maui | `-- it | `-- B