December 2019
Intermediate to advanced
314 pages
6h 51m
English
Interestingly, native executable code can be tested. When you generated the sample project, a Native<project>Test class name was included in the test folder. This class differs from Java tests as it's annotated with the @NativeImageTest annotation.
In terms of code, there's no need to make any changes as it uses inheritance to execute the native executable tests from our SimpleRestTest class:
@NativeImageTestpublic class NativeSimpleRestIT extends SimpleRestTest { // Execute the same tests but in native mode.}
The verify goal ...
Read now
Unlock full access