Package org.axonframework.unitofwork

Examples of org.axonframework.unitofwork.DefaultUnitOfWork$UoWEventRegistrationCallback


    @Test
    public void commandHandlerOperationCollected() throws Throwable {
        new TestCommandHandler().handle(
                new GenericCommandMessage<CommandHandlerOperationCollectionAspectTest.TestCommand>(
                        new TestCommand(), Collections.singletonMap("someKey", (Object) "someValue")),
                new DefaultUnitOfWork());

        Operation op = getLastEntered();

        assertEquals("org.axonframework.insight.plugin.axon.CommandHandlerOperationCollectionAspectTest$TestCommand", op.get("commandType"));
        assertEquals("handle", op.getSourceCodeLocation().getMethodName());
View Full Code Here

TOP

Related Classes of org.axonframework.unitofwork.DefaultUnitOfWork$UoWEventRegistrationCallback

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.