STest.java [test/service_tests/m/wqm/pestpractscores/v1_0] Revision: afb9a00b700215a87d4d9986347c4aeba62b84e5  Date: Fri May 15 15:50:45 MDT 2015
package service_tests.m.wqm.pestpractscores.v1_0;
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

import csip.test.ServiceTest;
import java.io.File;
import junit.framework.Assert;
import org.junit.Test;



/**
 *
 * @author dhawal
 */
public class STest {
        @Test
    public void stest() throws Exception {
        ServiceTest.Results r = ServiceTest.run("test/" + new File(getClass().getCanonicalName().replace('.', '/')).getParent());
        Assert.assertTrue(r.getTotal() == r.getSucceeded());
    }
}