]
Jan Blizňák commented on JBWS-4056:
-----------------------------------
Sorry about that, I missed that usage since they are looked up by FQDN class name in
String.
Anyway I sent a proposal PR
Ensure all tests are written junit4 way
---------------------------------------
Key: JBWS-4056
URL:
https://issues.jboss.org/browse/JBWS-4056
Project: JBoss Web Services
Issue Type: Task
Components: jbossws-cxf
Affects Versions: jbossws-cxf-5.1.7.Final
Reporter: Jan Blizňák
Currently most of the tests in JBWS project are written using @RunWith(Arquillian.class)
whereas there are others extending TestCase class from junit framework. The latter is the
junit3 way of writing tests which relies on test method name convention.
Furthermore, almost all tests transitively extends TestCase via JBossWSTest despite of
using @RunWith. In some cases that leads to situations where some test methods are
actually skipped because they miss @Test annotation, which were probably missed within
migration to Arquillian.
We should ensure all tests are annotated with @Test. We also should remove inheritance
from TestCase class and instead use Assert.* methods directly.