INT-1617 renaming test classes and config files

This commit is contained in:
Mark Fisher
2010-11-15 16:52:10 -05:00
parent bd6fdaa239
commit d45f54ba70
3 changed files with 2 additions and 2 deletions

View File

@@ -49,7 +49,7 @@ public class XmppConnectionParserTests {
@Test
public void testSimpleConfiguration() {
ApplicationContext ac = new ClassPathXmlApplicationContext("XmppConnectionParserTest-simple.xml", this.getClass());
ApplicationContext ac = new ClassPathXmlApplicationContext("XmppConnectionParserTests-simple.xml", this.getClass());
XMPPConnection connection = ac.getBean("connection", XMPPConnection.class);
assertNull(connection.getServiceName());
assertFalse(connection.isConnected());
@@ -65,7 +65,7 @@ public class XmppConnectionParserTests {
@Test
public void testCompleteConfiguration() {
ApplicationContext ac = new ClassPathXmlApplicationContext("XmppConnectionParserTest-complete.xml", this.getClass());
ApplicationContext ac = new ClassPathXmlApplicationContext("XmppConnectionParserTests-complete.xml", this.getClass());
XMPPConnection connection = ac.getBean("connection", XMPPConnection.class);
assertNull(connection.getServiceName());
assertFalse(connection.isConnected());