Package org.mule.test.integration.watermark

Source Code of org.mule.test.integration.watermark.WatermarkInvalidSelectorExpressionTestCase

/*
* 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.
*/

package org.mule.test.integration.watermark;

import org.mule.api.lifecycle.LifecycleException;
import org.mule.tck.junit4.ApplicationContextBuilder;

import org.junit.Test;

public class WatermarkInvalidSelectorExpressionTestCase
{

    @Test(expected = LifecycleException.class)
    public void invalidSelectorExpression() throws Exception
    {
        ApplicationContextBuilder builder = new ApplicationContextBuilder();
        builder.setApplicationResources(new String[] {"org/mule/test/integration/watermark/watermark-invalid-selector-expression-config.xml"});
        builder.build();
    }

}
TOP

Related Classes of org.mule.test.integration.watermark.WatermarkInvalidSelectorExpressionTestCase

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.