/** * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. **/ /** * This file was automatically generated by the Mule Development Kit */ package org.camunda.demo.mule; import static org.junit.Assert.*; import org.junit.Test; import org.mule.api.MuleEvent; import org.mule.construct.Flow; import org.mule.tck.junit4.FunctionalTestCase; public class camundaConnectorTest extends FunctionalTestCase { @Override protected String getConfigFile() { return "mule-config.xml"; } @Test public void testFlow() throws Exception { runFlowAndExpect("testFlow", "Another string"); } }