In October 2024, Nuxeo Technical Support will move from jira.nuxeo.com to Hyland Community. We will also be migrating Nuxeo Jira projects to a new instance. For more information, please see the Nuxeo customer newsletter and the blog post on Hyland Community.
Some test classes have been moved under nuxeo-core-io test part. But nuxeo-core-io test module is a dependency of nuxeo-core-test (former location) to enforce backward compatibility.
TransactionalFeature has been moved from nuxeo-core-test to nuxeo-runtime-test. With this move, we no longer need ContainerFeature. This feature has been removed, you can get same behavior by annotating your test class with:
Some test classes have been moved under nuxeo-core-io test part. But nuxeo-core-io test module is a dependency of nuxeo-core-test (former location) to enforce backward compatibility.
TransactionalFeature has been moved from nuxeo-core-test to nuxeo-runtime-test . With this move, we no longer need ContainerFeature . This feature has been removed, you can get same behavior by annotating your test class with:
@RunWith(FeaturesRunner.class)
@Features(TransactionalFeature.class)
@TransactionalConfig(autoStart = false )
public class MyTest { ... }
By that, we also introduce two new features: CoreIOFeature and CoreBulkFeature which deploy needed components to use/test the feature.