1
2
3
4
5
6
7
8
9
10
11 package org.mule.test.config;
12
13 import org.mule.config.i18n.Message;
14 import org.mule.config.i18n.MessageFactory;
15
16 public class TestMessages extends MessageFactory
17 {
18 private static final TestMessages factory = new TestMessages();
19
20 private static final String BUNDLE_PATH = getBundlePath("test");
21
22 public static Message testMessage(String arg1, String arg2, String arg3)
23 {
24 return factory.createMessage(BUNDLE_PATH, 1, arg1, arg2, arg3);
25 }
26 }
27
28