For some time, I have been struggling to run the arquillian test script . This test includes classes embedded in JSF classes, and it ran into ClassFormatError: Absent Code , since no implementation was found for javax.faces.model.DataModel .
My assumption was that I needed to provide my test with a JSF implementation, but the implementations that I found (for example, bundled with JBoss) do not have the javax.faces package, only com.sun , and I could find no trace class DataModel .
Where I do not understand how it works here? Why does impl not implement api ?
source share