Package betsy.bpmn

Source Code of betsy.bpmn.BPMNProcessAssertions

package betsy.bpmn;

import betsy.bpmn.model.BPMNProcess;
import configuration.bpmn.BPMNProcessRepository;
import org.junit.Test;

import java.util.List;

import static org.junit.Assert.assertEquals;

public class BPMNProcessAssertions {

    @Test
    public void test() {
        BPMNProcess process = new BPMNProcessRepository().getByName("SequenceFlow").get(0);
        assertEquals("basics", process.getGroup());
    }

}
TOP

Related Classes of betsy.bpmn.BPMNProcessAssertions

TOP
Copyright © 2018 www.massapi.com. 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.