This is one of the rare cases in which the official documentation of an API is severely lacking synchronization with the actual provided API.
So, the jcabi-manifests API documentation clearly states here that manifest entries can be statically mocked using the utility class Manifests. Unfortunately, the static methods described in the mentioned page - e.g. inject(), snapshot(), revert() - are missing from the actual API.
Has anybody been able to use the manifest mocking feature supposedly being delivered with jcabi-manifests? If yes, how?
Looks like the documentation is indeed a bit messy. You need version 0.8.2. This is where all that mocking functions still exist. But a better way of mocking exists in the latest version. Instead of using static methods, pass an instance of
Manifests
to your class and mock the entire instance of it. In the latest version we got rid of static methods, since they are very difficult to test in concurrent threads. If you have more issues, submit a ticket to Github, we'll try to help: https://github.com/jcabi/jcabi-manifests/issues