1   package com.atlassian.plugins.codegen.modules.jira;
2   
3   import org.junit.Test;
4   
5   import static org.junit.Assert.assertEquals;
6   
7   /**
8    * @since 3.8
9    */
10  public class SoapRPCTest extends AbstractRPCTest
11  {
12      public SoapRPCTest()
13      {
14          super("rpc-soap", true);
15      }
16      
17      @Test
18      public void moduleHasInterface() throws Exception
19      {
20          assertEquals(PACKAGE_NAME + ".MyEndpoint", getGeneratedModule().selectSingleNode("published-interface").getText());
21      }
22  }