Package org.mule.munit.runner.mule.result.notification

Examples of org.mule.munit.runner.mule.result.notification.DummyNotificationListener


            return new StreamNotificationListener(new PrintStream(new FileOutputStream(getFile(project.getBasedir() + TARGET_SUREFIRE_REPORTS_MUNIT_TXT + fileName))));
        }
        catch (FileNotFoundException e)
        {
          e.printStackTrace();
            return new DummyNotificationListener();
        }
        catch (IOException e)
        {
          e.printStackTrace();
            return new DummyNotificationListener();
        }
    }
View Full Code Here


            return new XmlNotificationListener(fileName, new PrintStream(new FileOutputStream(getFile(project.getBasedir() + TARGET_SUREFIRE_REPORTS_TEST_MUNIT_XML + fileName))));
        }
        catch (FileNotFoundException e)
        {
          e.printStackTrace();
            return new DummyNotificationListener();
        }
        catch (IOException e)
        {
          e.printStackTrace();
            return new DummyNotificationListener();
        }
    }
View Full Code Here

TOP

Related Classes of org.mule.munit.runner.mule.result.notification.DummyNotificationListener

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.