Renaming gdata binding testcases to be automatically executed by surefire

git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@677737 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
lresende 2008-07-17 21:32:17 +00:00
parent e2f0bbab32
commit 62763d7939
2 changed files with 3 additions and 8 deletions

View file

@ -28,7 +28,7 @@ import com.google.gdata.data.Entry;
import com.google.gdata.data.Feed;
import com.google.gdata.data.PlainTextConstruct;
public class Test_GdataBinding_LocalhostServlet extends TestCase {
public class ConsumerProviderTestCase extends TestCase {
private SCADomain scaDomainProvider = null;
private SCADomain scaDomainConsumer = null;

View file

@ -19,29 +19,24 @@
package org.apache.tuscany.sca.binding.gdata;
import static org.junit.Assert.*;
import java.io.IOException;
import junit.framework.TestCase;
import org.apache.tuscany.sca.host.embedded.SCADomain;
import org.junit.After;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import com.google.gdata.data.Entry;
import com.google.gdata.data.Feed;
import com.google.gdata.data.PlainTextConstruct;
public class Test_GdataBinding_GoogleBloggerService extends TestCase{
public class GoogleBloggerServiceTestCase extends TestCase{
private SCADomain scaDomainConsumer = null;
private CustomerClient testService = null;
public Test_GdataBinding_GoogleBloggerService(){
public GoogleBloggerServiceTestCase(){
}