Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3e3927ed58c735f8a0082cfe006d9be2ca913f50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.eclipse.wst.wsi.tests.internal;

/**
 * JUnit tests that test message logs against the WS-I Simple Soap Binding
 * profile.
 */
public class MessageLogConformanceSSBPTest extends
        CoreMessageLogConformanceTest {

    public MessageLogConformanceSSBPTest(String name) {
        super(name);
    }
    
    public void test_1309_1() { runTest("bp", "1309-1", TAD_ID_SSBP); } 
    public void test_1309_2() { runTest("bp", "1309-2", TAD_ID_SSBP); } 
    public void test_1600_1() { runTest("bp", "1600-1", TAD_ID_SSBP); }
}

Back to the top