You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(112) |
Jun
(63) |
Jul
(4) |
Aug
(77) |
Sep
(56) |
Oct
(6) |
Nov
|
Dec
|
|---|
|
From: <vm...@us...> - 2003-10-04 08:47:58
|
Update of /cvsroot/junitbook/junitbook/fine/src/java/junitbook/fine/try2 In directory sc8-pr-cvs1:/tmp/cvs-serv25947/src/java/junitbook/fine/try2 Added Files: HttpURLConnectionFactory.java Removed Files: HttpConnectionFactory.java Log Message: renaming --- NEW FILE: HttpURLConnectionFactory.java --- /* * ================================================================= * * The Apache Software License, Version 1.1 * * Copyright (c) 2001-2003 The Apache Software Foundation. All * rights reserved. * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * 3. The end-user documentation included with the redistribution, * if any, must include the following acknowlegement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." * Alternately, this acknowlegement may appear in the software * itself, if and wherever such third-party acknowlegements * normally appear. * * 4. The names "The Jakarta Project", "junitbook", "jia", * "JUnit in Action" and "Apache Software Foundation" must not be * used to endorse or promote products derived from this software * without prior written permission. For written permission, * please contact ap...@ap.... * * 5. Products derived from this software may not be called "Apache" * nor may "Apache" appear in their names without prior written * permission of the Apache Group. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * ================================================================= * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For * more information on the Apache Software Foundation, please see * <http://www.apache.org/>. * */ package junitbook.fine.try2; import java.io.InputStream; import java.net.HttpURLConnection; import java.net.URL; public class HttpURLConnectionFactory implements ConnectionFactory { private URL url; public HttpURLConnectionFactory(URL url) { this.url = url; } public InputStream getData() throws Exception { HttpURLConnection connection = (HttpURLConnection) this.url.openConnection(); return connection.getInputStream(); } } --- HttpConnectionFactory.java DELETED --- |
|
From: <vm...@us...> - 2003-10-04 08:34:49
|
Update of /cvsroot/junitbook/junitbook/fine/src/java/junitbook/fine/try1
In directory sc8-pr-cvs1:/tmp/cvs-serv24601/src/java/junitbook/fine/try1
Modified Files:
WebClient.java
Log Message:
- fixed bug
- renamed createHttpConnection to createHttpURLConnection
Index: WebClient.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/fine/src/java/junitbook/fine/try1/WebClient.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** WebClient.java 8 Jun 2003 15:27:42 -0000 1.3
--- WebClient.java 4 Oct 2003 08:34:42 -0000 1.4
***************
*** 72,76 ****
try
{
! HttpURLConnection connection = createHttpConnection(url);
InputStream is = connection.getInputStream();
--- 72,77 ----
try
{
! HttpURLConnection connection =
! createHttpURLConnection(url);
InputStream is = connection.getInputStream();
***************
*** 90,94 ****
}
! protected HttpURLConnection createHttpConnection(URL url)
throws IOException
{
--- 91,95 ----
}
! protected HttpURLConnection createHttpURLConnection(URL url)
throws IOException
{
|
|
From: <vm...@us...> - 2003-10-04 08:34:49
|
Update of /cvsroot/junitbook/junitbook/fine/src/test/junitbook/fine/try1
In directory sc8-pr-cvs1:/tmp/cvs-serv24601/src/test/junitbook/fine/try1
Modified Files:
TestWebClientMock.java
Log Message:
- fixed bug
- renamed createHttpConnection to createHttpURLConnection
Index: TestWebClientMock.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/fine/src/test/junitbook/fine/try1/TestWebClientMock.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** TestWebClientMock.java 8 Jun 2003 15:27:42 -0000 1.3
--- TestWebClientMock.java 4 Oct 2003 08:34:42 -0000 1.4
***************
*** 95,99 ****
}
! public HttpURLConnection getHttpConnection(URL url)
throws IOException
{
--- 95,99 ----
}
! public HttpURLConnection createHttpURLConnection(URL url)
throws IOException
{
|
Update of /cvsroot/junitbook/junitbook/coarse/src/test/junitbook/coarse/try1
In directory sc8-pr-cvs1:/tmp/cvs-serv5255/src/test/junitbook/coarse/try1
Modified Files:
TestWebClientSkeleton.java TestWebClientSetup3.java
TestWebClientSetup2.java TestWebClient2.java
TestWebClient1.java TestWebClient3.java
Log Message:
- Fixed formatting
- Fixed handler mappings
Index: TestWebClientSkeleton.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/coarse/src/test/junitbook/coarse/try1/TestWebClientSkeleton.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** TestWebClientSkeleton.java 14 Sep 2003 10:59:24 -0000 1.4
--- TestWebClientSkeleton.java 3 Oct 2003 17:51:08 -0000 1.5
***************
*** 81,86 ****
WebClient client = new WebClient();
! String result = client.getContent(
! new URL("http://localhost:8080/testGetContentOk"));
assertEquals("It works", result);
--- 81,86 ----
WebClient client = new WebClient();
! String result = client.getContent(new URL(
! "http://localhost:8080/testGetContentOk"));
assertEquals("It works", result);
Index: TestWebClientSetup3.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/coarse/src/test/junitbook/coarse/try1/TestWebClientSetup3.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** TestWebClientSetup3.java 14 Sep 2003 10:59:24 -0000 1.5
--- TestWebClientSetup3.java 3 Oct 2003 17:51:08 -0000 1.6
***************
*** 101,105 ****
HttpContext context2 = new HttpContext();
! context2.setContextPath("/");
context2.addHandler(new NotFoundHandler());
server.addContext(context2);
--- 101,105 ----
HttpContext context2 = new HttpContext();
! context2.setContextPath("/testGetContentNotFound");
context2.addHandler(new NotFoundHandler());
server.addContext(context2);
***************
*** 107,111 ****
HttpContext context3 = new HttpContext();
! context3.setContextPath("/ServerError");
context3.addHandler(new TestGetContentServerErrorHandler());
server.addContext(context3);
--- 107,111 ----
HttpContext context3 = new HttpContext();
! context3.setContextPath("/testGetContentServerError");
context3.addHandler(new TestGetContentServerErrorHandler());
server.addContext(context3);
Index: TestWebClientSetup2.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/coarse/src/test/junitbook/coarse/try1/TestWebClientSetup2.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** TestWebClientSetup2.java 14 Sep 2003 10:59:24 -0000 1.5
--- TestWebClientSetup2.java 3 Oct 2003 17:51:08 -0000 1.6
***************
*** 101,105 ****
HttpContext context2 = new HttpContext();
! context2.setContextPath("/");
context2.addHandler(new NotFoundHandler());
server.addContext(context2);
--- 101,105 ----
HttpContext context2 = new HttpContext();
! context2.setContextPath("/testGetContentNotFound");
context2.addHandler(new NotFoundHandler());
server.addContext(context2);
Index: TestWebClient2.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/coarse/src/test/junitbook/coarse/try1/TestWebClient2.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** TestWebClient2.java 8 Jun 2003 15:06:33 -0000 1.3
--- TestWebClient2.java 3 Oct 2003 17:51:08 -0000 1.4
***************
*** 78,83 ****
WebClient client = new WebClient();
! String result = client.getContent(
! new URL("http://localhost:8080/testGetContentOk"));
assertEquals("It works", result);
--- 78,83 ----
WebClient client = new WebClient();
! String result = client.getContent(new URL(
! "http://localhost:8080/testGetContentOk"));
assertEquals("It works", result);
***************
*** 88,93 ****
WebClient client = new WebClient();
! String result = client.getContent(
! new URL("http://localhost:8080/DoesNotExist"));
assertNull(result);
--- 88,93 ----
WebClient client = new WebClient();
! String result = client.getContent(new URL(
! "http://localhost:8080/testGetContentNotFound"));
assertNull(result);
Index: TestWebClient1.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/coarse/src/test/junitbook/coarse/try1/TestWebClient1.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** TestWebClient1.java 8 Jun 2003 15:06:33 -0000 1.3
--- TestWebClient1.java 3 Oct 2003 17:51:08 -0000 1.4
***************
*** 78,83 ****
WebClient client = new WebClient();
! String result = client.getContent(
! new URL("http://localhost:8080/testGetContentOk"));
assertEquals("It works", result);
--- 78,83 ----
WebClient client = new WebClient();
! String result = client.getContent(new URL(
! "http://localhost:8080/testGetContentOk"));
assertEquals("It works", result);
Index: TestWebClient3.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/coarse/src/test/junitbook/coarse/try1/TestWebClient3.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** TestWebClient3.java 8 Jun 2003 15:06:33 -0000 1.3
--- TestWebClient3.java 3 Oct 2003 17:51:08 -0000 1.4
***************
*** 78,83 ****
WebClient client = new WebClient();
! String result = client.getContent(
! new URL("http://localhost:8080/testGetContentOk"));
assertEquals("It works", result);
--- 78,83 ----
WebClient client = new WebClient();
! String result = client.getContent(new URL(
! "http://localhost:8080/testGetContentOk"));
assertEquals("It works", result);
***************
*** 88,93 ****
WebClient client = new WebClient();
! String result = client.getContent(
! new URL("http://localhost:8080/DoesNotExist"));
assertNull(result);
--- 88,93 ----
WebClient client = new WebClient();
! String result = client.getContent(new URL(
! "http://localhost:8080/testGetContentNotFound"));
assertNull(result);
***************
*** 98,103 ****
WebClient client = new WebClient();
! String result = client.getContent(
! new URL("http://localhost:8080/ServerError"));
assertNull(result);
--- 98,103 ----
WebClient client = new WebClient();
! String result = client.getContent(new URL(
! "http://localhost:8080/testGetContentServerError"));
assertNull(result);
|
|
From: <vm...@us...> - 2003-10-03 16:56:37
|
Update of /cvsroot/junitbook/junitbook/coarse/src/java/junitbook/coarse
In directory sc8-pr-cvs1:/tmp/cvs-serv27644/src/java/junitbook/coarse
Modified Files:
JettySample.java
Log Message:
fixed indentation
Index: JettySample.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/coarse/src/java/junitbook/coarse/JettySample.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** JettySample.java 8 Jun 2003 15:06:33 -0000 1.2
--- JettySample.java 3 Oct 2003 16:56:30 -0000 1.3
***************
*** 66,71 ****
public class JettySample
{
! public static void main(String[] args)
! throws Exception
{
HttpServer server = new HttpServer();
--- 66,70 ----
public class JettySample
{
! public static void main(String[] args) throws Exception
{
HttpServer server = new HttpServer();
|
|
From: <vm...@us...> - 2003-10-03 16:34:49
|
Update of /cvsroot/junitbook/junitbook/examining
In directory sc8-pr-cvs1:/tmp/cvs-serv20894
Modified Files:
TestAccount.java
Log Message:
fixed typo in test name
Index: TestAccount.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/examining/TestAccount.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** TestAccount.java 4 Aug 2003 15:03:04 -0000 1.5
--- TestAccount.java 3 Oct 2003 16:34:44 -0000 1.6
***************
*** 69,73 ****
}
! public void testTranferWithoutEnoughFunds()
{
long balance = 1000;
--- 69,73 ----
}
! public void testTransferWithoutEnoughFunds()
{
long balance = 1000;
|
|
From: <vm...@us...> - 2003-09-14 11:02:46
|
Update of /cvsroot/junitbook/junitbook/servlets/src/test/junitbook/servlets
In directory sc8-pr-cvs1:/tmp/cvs-serv25561/src/test/junitbook/servlets
Modified Files:
TestAdminServletMO.java
Log Message:
- "public void setUp()" -> "protected void setUp()"
- "public void tearDown()" -> "protected void tearDown()"
Index: TestAdminServletMO.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/servlets/src/test/junitbook/servlets/TestAdminServletMO.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** TestAdminServletMO.java 19 Aug 2003 17:00:22 -0000 1.10
--- TestAdminServletMO.java 14 Sep 2003 11:02:40 -0000 1.11
***************
*** 84,88 ****
private AdminServlet servlet;
! public void setUp()
{
servlet = new AdminServlet()
--- 84,88 ----
private AdminServlet servlet;
! protected void setUp()
{
servlet = new AdminServlet()
***************
*** 102,106 ****
}
! public void tearDown()
{
mockRequest.verify();
--- 102,106 ----
}
! protected void tearDown()
{
mockRequest.verify();
|
|
From: <vm...@us...> - 2003-09-14 11:01:33
|
Update of /cvsroot/junitbook/junitbook/ejb/integration/conf/cactus
In directory sc8-pr-cvs1:/tmp/cvs-serv25385/conf/cactus
Modified Files:
application.xml
Log Message:
align
Index: application.xml
===================================================================
RCS file: /cvsroot/junitbook/junitbook/ejb/integration/conf/cactus/application.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** application.xml 25 May 2003 15:50:22 -0000 1.2
--- application.xml 14 Sep 2003 11:01:30 -0000 1.3
***************
*** 11,15 ****
<!-- Needed by Cactus -->
<module>
! <web>
<web-uri>cactus.war</web-uri>
<context-root>test</context-root>
--- 11,15 ----
<!-- Needed by Cactus -->
<module>
! <web>
<web-uri>cactus.war</web-uri>
<context-root>test</context-root>
|
Update of /cvsroot/junitbook/junitbook/coarse/src/test/junitbook/coarse/try1
In directory sc8-pr-cvs1:/tmp/cvs-serv24898/src/test/junitbook/coarse/try1
Modified Files:
TestWebClientSkeleton.java TestWebClientSetup3.java
TestWebClientSetup2.java TestWebClientSetup1.java
Log Message:
- "public void setUp()" -> "protected void setUp()"
- "public void tearDown()" -> "protected void tearDown()"
Index: TestWebClientSkeleton.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/coarse/src/test/junitbook/coarse/try1/TestWebClientSkeleton.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** TestWebClientSkeleton.java 8 Jun 2003 15:06:33 -0000 1.3
--- TestWebClientSkeleton.java 14 Sep 2003 10:59:24 -0000 1.4
***************
*** 65,69 ****
public class TestWebClientSkeleton extends TestCase
{
! public void setUp()
{
// Start Jetty and configure it to return "It works" when
--- 65,69 ----
public class TestWebClientSkeleton extends TestCase
{
! protected void setUp()
{
// Start Jetty and configure it to return "It works" when
***************
*** 72,76 ****
}
! public void tearDown()
{
// Stop Jetty.
--- 72,76 ----
}
! protected void tearDown()
{
// Stop Jetty.
Index: TestWebClientSetup3.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/coarse/src/test/junitbook/coarse/try1/TestWebClientSetup3.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** TestWebClientSetup3.java 9 Aug 2003 12:36:05 -0000 1.4
--- TestWebClientSetup3.java 14 Sep 2003 10:59:24 -0000 1.5
***************
*** 84,88 ****
}
! public void setUp() throws Exception
{
server = new HttpServer();
--- 84,88 ----
}
! protected void setUp() throws Exception
{
server = new HttpServer();
***************
*** 114,118 ****
}
! public void tearDown() throws Exception
{
server.stop();
--- 114,118 ----
}
! protected void tearDown() throws Exception
{
server.stop();
Index: TestWebClientSetup2.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/coarse/src/test/junitbook/coarse/try1/TestWebClientSetup2.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** TestWebClientSetup2.java 9 Aug 2003 12:36:05 -0000 1.4
--- TestWebClientSetup2.java 14 Sep 2003 10:59:24 -0000 1.5
***************
*** 84,88 ****
}
! public void setUp() throws Exception
{
server = new HttpServer();
--- 84,88 ----
}
! protected void setUp() throws Exception
{
server = new HttpServer();
***************
*** 108,112 ****
}
! public void tearDown() throws Exception
{
server.stop();
--- 108,112 ----
}
! protected void tearDown() throws Exception
{
server.stop();
Index: TestWebClientSetup1.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/coarse/src/test/junitbook/coarse/try1/TestWebClientSetup1.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** TestWebClientSetup1.java 9 Aug 2003 12:36:05 -0000 1.4
--- TestWebClientSetup1.java 14 Sep 2003 10:59:24 -0000 1.5
***************
*** 83,87 ****
}
! public void setUp() throws Exception
{
server = new HttpServer();
--- 83,87 ----
}
! protected void setUp() throws Exception
{
server = new HttpServer();
***************
*** 101,105 ****
}
! public void tearDown() throws Exception
{
server.stop();
--- 101,105 ----
}
! protected void tearDown() throws Exception
{
server.stop();
|
|
From: <vm...@us...> - 2003-09-14 10:59:48
|
Update of /cvsroot/junitbook/junitbook/coarse/src/test/junitbook/coarse/try2
In directory sc8-pr-cvs1:/tmp/cvs-serv24898/src/test/junitbook/coarse/try2
Modified Files:
TestWebClient.java
Log Message:
- "public void setUp()" -> "protected void setUp()"
- "public void tearDown()" -> "protected void tearDown()"
Index: TestWebClient.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/coarse/src/test/junitbook/coarse/try2/TestWebClient.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** TestWebClient.java 8 Jun 2003 15:06:33 -0000 1.3
--- TestWebClient.java 14 Sep 2003 10:59:24 -0000 1.4
***************
*** 69,73 ****
public class TestWebClient extends TestCase
{
! public void setUp()
{
URL.setURLStreamHandlerFactory(
--- 69,73 ----
public class TestWebClient extends TestCase
{
! protected void setUp()
{
URL.setURLStreamHandlerFactory(
|
|
From: <vm...@us...> - 2003-09-14 09:21:11
|
Update of /cvsroot/junitbook/junitbook/database/src/test/junitbook/database
In directory sc8-pr-cvs1:/tmp/cvs-serv4152/src/test/junitbook/database
Modified Files:
TestJdbcDataAccessManagerMO1.java
TestJdbcDataAccessManagerMO3.java
TestJdbcDataAccessManagerMO2.java
TestJdbcDataAccessManagerMO.java
TestJdbcDataAccessManagerMO4.java
Log Message:
- "public void setUp()" -> "protected void setUp()"
- "public void tearDown()" -> "protected void tearDown()"
Index: TestJdbcDataAccessManagerMO1.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/database/src/test/junitbook/database/TestJdbcDataAccessManagerMO1.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TestJdbcDataAccessManagerMO1.java 24 Aug 2003 22:03:15 -0000 1.1
--- TestJdbcDataAccessManagerMO1.java 14 Sep 2003 09:21:05 -0000 1.2
***************
*** 75,79 ****
private TestableJdbcDataAccessManager manager;
! public void setUp() throws Exception
{
statement = new MockStatement();
--- 75,79 ----
private TestableJdbcDataAccessManager manager;
! protected void setUp() throws Exception
{
statement = new MockStatement();
Index: TestJdbcDataAccessManagerMO3.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/database/src/test/junitbook/database/TestJdbcDataAccessManagerMO3.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TestJdbcDataAccessManagerMO3.java 24 Aug 2003 22:03:15 -0000 1.1
--- TestJdbcDataAccessManagerMO3.java 14 Sep 2003 09:21:05 -0000 1.2
***************
*** 79,83 ****
private MockResultSetMetaData resultSetMetaData;
! public void setUp() throws Exception
{
resultSetMetaData = new MockResultSetMetaData();
--- 79,83 ----
private MockResultSetMetaData resultSetMetaData;
! protected void setUp() throws Exception
{
resultSetMetaData = new MockResultSetMetaData();
Index: TestJdbcDataAccessManagerMO2.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/database/src/test/junitbook/database/TestJdbcDataAccessManagerMO2.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TestJdbcDataAccessManagerMO2.java 24 Aug 2003 22:03:15 -0000 1.1
--- TestJdbcDataAccessManagerMO2.java 14 Sep 2003 09:21:05 -0000 1.2
***************
*** 77,81 ****
private TestableJdbcDataAccessManager manager;
! public void setUp() throws Exception
{
resultSet = new MockSingleRowResultSet();
--- 77,81 ----
private TestableJdbcDataAccessManager manager;
! protected void setUp() throws Exception
{
resultSet = new MockSingleRowResultSet();
Index: TestJdbcDataAccessManagerMO.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/database/src/test/junitbook/database/TestJdbcDataAccessManagerMO.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TestJdbcDataAccessManagerMO.java 24 Aug 2003 22:03:15 -0000 1.1
--- TestJdbcDataAccessManagerMO.java 14 Sep 2003 09:21:05 -0000 1.2
***************
*** 80,84 ****
private TestableJdbcDataAccessManager2 manager;
! public void setUp() throws Exception
{
resultSetMetaData = new MockResultSetMetaData();
--- 80,84 ----
private TestableJdbcDataAccessManager2 manager;
! protected void setUp() throws Exception
{
resultSetMetaData = new MockResultSetMetaData();
***************
*** 96,100 ****
}
! public void tearDown()
{
connection.verify();
--- 96,100 ----
}
! protected void tearDown()
{
connection.verify();
Index: TestJdbcDataAccessManagerMO4.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/database/src/test/junitbook/database/TestJdbcDataAccessManagerMO4.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TestJdbcDataAccessManagerMO4.java 24 Aug 2003 22:03:15 -0000 1.1
--- TestJdbcDataAccessManagerMO4.java 14 Sep 2003 09:21:05 -0000 1.2
***************
*** 80,84 ****
private TestableJdbcDataAccessManager manager;
! public void setUp() throws Exception
{
resultSetMetaData = new MockResultSetMetaData();
--- 80,84 ----
private TestableJdbcDataAccessManager manager;
! protected void setUp() throws Exception
{
resultSetMetaData = new MockResultSetMetaData();
***************
*** 96,100 ****
}
! public void tearDown()
{
connection.verify();
--- 96,100 ----
}
! protected void tearDown()
{
connection.verify();
|
Update of /cvsroot/junitbook/junitbook/database/src/test-cactus/junitbook/database
In directory sc8-pr-cvs1:/tmp/cvs-serv4152/src/test-cactus/junitbook/database
Modified Files:
TestJdbcDataAccessManagerIC2.java
TestJdbcDataAccessManagerIC.java DatabaseTestSetup.java
Log Message:
- "public void setUp()" -> "protected void setUp()"
- "public void tearDown()" -> "protected void tearDown()"
Index: TestJdbcDataAccessManagerIC2.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/database/src/test-cactus/junitbook/database/TestJdbcDataAccessManagerIC2.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TestJdbcDataAccessManagerIC2.java 24 Aug 2003 22:03:15 -0000 1.1
--- TestJdbcDataAccessManagerIC2.java 14 Sep 2003 09:21:05 -0000 1.2
***************
*** 73,77 ****
}
! public void setUp() throws Exception
{
// Database initialization for data that need to be
--- 73,77 ----
}
! protected void setUp() throws Exception
{
// Database initialization for data that need to be
Index: TestJdbcDataAccessManagerIC.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/database/src/test-cactus/junitbook/database/TestJdbcDataAccessManagerIC.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TestJdbcDataAccessManagerIC.java 24 Aug 2003 22:03:15 -0000 1.1
--- TestJdbcDataAccessManagerIC.java 14 Sep 2003 09:21:05 -0000 1.2
***************
*** 74,78 ****
public class TestJdbcDataAccessManagerIC extends ServletTestCase
{
! public void setUp() throws Exception
{
IDatabaseConnection connection =
--- 74,78 ----
public class TestJdbcDataAccessManagerIC extends ServletTestCase
{
! protected void setUp() throws Exception
{
IDatabaseConnection connection =
Index: DatabaseTestSetup.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/database/src/test-cactus/junitbook/database/DatabaseTestSetup.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** DatabaseTestSetup.java 24 Aug 2003 22:03:15 -0000 1.5
--- DatabaseTestSetup.java 14 Sep 2003 09:21:05 -0000 1.6
***************
*** 77,81 ****
}
! public void setUp() throws Exception
{
IDatabaseConnection connection =
--- 77,81 ----
}
! protected void setUp() throws Exception
{
IDatabaseConnection connection =
|
|
From: <vm...@us...> - 2003-09-14 08:58:34
|
Update of /cvsroot/junitbook/junitbook/ejb/mockobjects/src/test/junitbook/ejb/service2
In directory sc8-pr-cvs1:/tmp/cvs-serv501/src/test/junitbook/ejb/service2
Modified Files:
TestPetstoreEJB.java
Log Message:
- "public void setUp()" -> "protected void setUp()"
- "public void tearDown()" -> "protected void tearDown()"
Index: TestPetstoreEJB.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/ejb/mockobjects/src/test/junitbook/ejb/service2/TestPetstoreEJB.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** TestPetstoreEJB.java 17 May 2003 18:08:17 -0000 1.4
--- TestPetstoreEJB.java 14 Sep 2003 08:58:28 -0000 1.5
***************
*** 17,21 ****
private OrderLocal orderLocal;
! public void setUp()
{
petstore = new TestablePetstoreEJB();
--- 17,21 ----
private OrderLocal orderLocal;
! protected void setUp()
{
petstore = new TestablePetstoreEJB();
***************
*** 29,33 ****
}
! public void tearDown()
{
mockOrderLocal.verify();
--- 29,33 ----
}
! protected void tearDown()
{
mockOrderLocal.verify();
|
|
From: <vm...@us...> - 2003-09-14 08:58:34
|
Update of /cvsroot/junitbook/junitbook/ejb/mockobjects/src/test/junitbook/ejb/service1
In directory sc8-pr-cvs1:/tmp/cvs-serv501/src/test/junitbook/ejb/service1
Modified Files:
TestPetstoreEJB.java
Log Message:
- "public void setUp()" -> "protected void setUp()"
- "public void tearDown()" -> "protected void tearDown()"
Index: TestPetstoreEJB.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/ejb/mockobjects/src/test/junitbook/ejb/service1/TestPetstoreEJB.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** TestPetstoreEJB.java 17 May 2003 18:08:18 -0000 1.4
--- TestPetstoreEJB.java 14 Sep 2003 08:58:29 -0000 1.5
***************
*** 25,29 ****
private OrderLocal orderLocal;
! public void setUp()
{
petstore = new PetstoreEJB() {};
--- 25,29 ----
private OrderLocal orderLocal;
! protected void setUp()
{
petstore = new PetstoreEJB() {};
***************
*** 47,51 ****
}
! public void tearDown()
{
mockJMSUtil.verify();
--- 47,51 ----
}
! protected void tearDown()
{
mockJMSUtil.verify();
|
|
From: <vm...@us...> - 2003-09-14 08:58:34
|
Update of /cvsroot/junitbook/junitbook/ejb/mockobjects/src/test/junitbook/ejb
In directory sc8-pr-cvs1:/tmp/cvs-serv501/src/test/junitbook/ejb
Modified Files:
CommonPetstoreTestCase.java
Log Message:
- "public void setUp()" -> "protected void setUp()"
- "public void tearDown()" -> "protected void tearDown()"
Index: CommonPetstoreTestCase.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/ejb/mockobjects/src/test/junitbook/ejb/CommonPetstoreTestCase.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** CommonPetstoreTestCase.java 18 May 2003 15:55:07 -0000 1.5
--- CommonPetstoreTestCase.java 14 Sep 2003 08:58:28 -0000 1.6
***************
*** 43,47 ****
}
! public void setUp() throws Exception
{
jndiTestSetup.getMockContext().reset();
--- 43,47 ----
}
! protected void setUp() throws Exception
{
jndiTestSetup.getMockContext().reset();
***************
*** 121,125 ****
}
! public void tearDown()
{
jndiTestSetup.getMockContext().verify();
--- 121,125 ----
}
! protected void tearDown()
{
jndiTestSetup.getMockContext().verify();
|
Update of /cvsroot/junitbook/junitbook/ejb/mockobjects/src/test/junitbook/ejb/service3
In directory sc8-pr-cvs1:/tmp/cvs-serv501/src/test/junitbook/ejb/service3
Modified Files:
TestPetstoreEJB.java TestPetstoreEJB2.java
TestOrderProcessorMDB.java TestPetstoreEJBMO.java
Log Message:
- "public void setUp()" -> "protected void setUp()"
- "public void tearDown()" -> "protected void tearDown()"
Index: TestPetstoreEJB.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/ejb/mockobjects/src/test/junitbook/ejb/service3/TestPetstoreEJB.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** TestPetstoreEJB.java 9 Sep 2003 14:40:32 -0000 1.7
--- TestPetstoreEJB.java 14 Sep 2003 08:58:28 -0000 1.8
***************
*** 51,55 ****
}
! public void setUp() throws Exception
{
petstore = new PetstoreEJB() {};
--- 51,55 ----
}
! protected void setUp() throws Exception
{
petstore = new PetstoreEJB() {};
***************
*** 130,134 ****
}
! public void tearDown()
{
jndiTestSetup.getMockContext().verify();
--- 130,134 ----
}
! protected void tearDown()
{
jndiTestSetup.getMockContext().verify();
Index: TestPetstoreEJB2.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/ejb/mockobjects/src/test/junitbook/ejb/service3/TestPetstoreEJB2.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** TestPetstoreEJB2.java 18 May 2003 10:23:32 -0000 1.5
--- TestPetstoreEJB2.java 14 Sep 2003 08:58:28 -0000 1.6
***************
*** 19,23 ****
}
! public void setUp() throws Exception
{
super.setUp();
--- 19,23 ----
}
! protected void setUp() throws Exception
{
super.setUp();
Index: TestOrderProcessorMDB.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/ejb/mockobjects/src/test/junitbook/ejb/service3/TestOrderProcessorMDB.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** TestOrderProcessorMDB.java 18 May 2003 10:23:32 -0000 1.4
--- TestOrderProcessorMDB.java 14 Sep 2003 08:58:28 -0000 1.5
***************
*** 18,22 ****
}
! public void setUp() throws Exception
{
super.setUp();
--- 18,22 ----
}
! protected void setUp() throws Exception
{
super.setUp();
Index: TestPetstoreEJBMO.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/ejb/mockobjects/src/test/junitbook/ejb/service3/TestPetstoreEJBMO.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** TestPetstoreEJBMO.java 16 May 2003 08:05:54 -0000 1.3
--- TestPetstoreEJBMO.java 14 Sep 2003 08:58:28 -0000 1.4
***************
*** 52,56 ****
}
! public void setUp() throws Exception
{
petstore = new PetstoreEJB() {};
--- 52,56 ----
}
! protected void setUp() throws Exception
{
petstore = new PetstoreEJB() {};
|
|
From: <vm...@us...> - 2003-09-14 08:58:34
|
Update of /cvsroot/junitbook/junitbook/ejb/mockobjects/src/test/junitbook/ejb/domain
In directory sc8-pr-cvs1:/tmp/cvs-serv501/src/test/junitbook/ejb/domain
Modified Files:
TestOrderUtil.java
Log Message:
- "public void setUp()" -> "protected void setUp()"
- "public void tearDown()" -> "protected void tearDown()"
Index: TestOrderUtil.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/ejb/mockobjects/src/test/junitbook/ejb/domain/TestOrderUtil.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** TestOrderUtil.java 18 May 2003 10:23:33 -0000 1.4
--- TestOrderUtil.java 14 Sep 2003 08:58:29 -0000 1.5
***************
*** 17,21 ****
}
! public void setUp() throws Exception
{
super.setUp();
--- 17,21 ----
}
! protected void setUp() throws Exception
{
super.setUp();
|
|
From: <vm...@us...> - 2003-09-12 09:37:19
|
Update of /cvsroot/junitbook/junitbook
In directory sc8-pr-cvs1:/tmp/cvs-serv4903
Modified Files:
build.xml
Log Message:
continue work
Index: build.xml
===================================================================
RCS file: /cvsroot/junitbook/junitbook/build.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** build.xml 12 Sep 2003 09:36:56 -0000 1.3
--- build.xml 12 Sep 2003 09:37:16 -0000 1.4
***************
*** 2,6 ****
<project name="junitbook" default="release">
! <property name="project.version" value="0.2"/>
<target name="release">
--- 2,6 ----
<project name="junitbook" default="release">
! <property name="project.version" value="0.3-dev"/>
<target name="release">
|
|
From: <vm...@us...> - 2003-09-12 09:37:00
|
Update of /cvsroot/junitbook/junitbook
In directory sc8-pr-cvs1:/tmp/cvs-serv4829
Modified Files:
build.xml
Log Message:
Prepare to 0.2 release
Index: build.xml
===================================================================
RCS file: /cvsroot/junitbook/junitbook/build.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** build.xml 22 Aug 2003 13:50:05 -0000 1.2
--- build.xml 12 Sep 2003 09:36:56 -0000 1.3
***************
*** 2,6 ****
<project name="junitbook" default="release">
! <property name="project.version" value="0.2-dev"/>
<target name="release">
--- 2,6 ----
<project name="junitbook" default="release">
! <property name="project.version" value="0.2"/>
<target name="release">
***************
*** 10,17 ****
--- 10,21 ----
<exclude name="**/target/**"/>
<exclude name="**/*.log"/>
+ <exclude name="**/.clover/**"/>
+ <exclude name="**/build.properties"/>
+ <exclude name="**/jbossresult.txt"/>
<exclude name="build.xml"/>
<exclude name="junitbook.psf"/>
<exclude name="checkstyle-eclipse.xml"/>
<exclude name="build.properties"/>
+ <exclude name="*.zip"/>
</zipfileset>
</zip>
|
|
From: <vm...@us...> - 2003-09-12 09:31:04
|
Update of /cvsroot/junitbook/junitbook/pages In directory sc8-pr-cvs1:/tmp/cvs-serv3620 Modified Files: .project Removed Files: .checkstyle Log Message: Don't commit checkstyle plugin-related files Index: .project =================================================================== RCS file: /cvsroot/junitbook/junitbook/pages/.project,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** .project 8 Jun 2003 15:50:11 -0000 1.3 --- .project 12 Sep 2003 09:30:58 -0000 1.4 *************** *** 7,15 **** <buildSpec> <buildCommand> - <name>com.atlassw.tools.eclipse.checkstyle.CheckstyleBuilder</name> - <arguments> - </arguments> - </buildCommand> - <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> --- 7,10 ---- *************** *** 19,23 **** <natures> <nature>org.eclipse.jdt.core.javanature</nature> - <nature>com.atlassw.tools.eclipse.checkstyle.CheckstyleNature</nature> </natures> </projectDescription> --- 14,17 ---- --- .checkstyle DELETED --- |
|
From: <vm...@us...> - 2003-09-12 09:24:20
|
Update of /cvsroot/junitbook/junitbook/automating In directory sc8-pr-cvs1:/tmp/cvs-serv2352 Added Files: .cvsignore Log Message: Added .clover directory to CVS ignore list. This dir is created by the Clover plugin for Eclipse. --- NEW FILE: .cvsignore --- .clover |
|
From: <vm...@us...> - 2003-09-12 09:24:14
|
Update of /cvsroot/junitbook/junitbook/ejb/integration In directory sc8-pr-cvs1:/tmp/cvs-serv2337 Modified Files: .cvsignore Log Message: Added .clover directory to CVS ignore list. This dir is created by the Clover plugin for Eclipse. Index: .cvsignore =================================================================== RCS file: /cvsroot/junitbook/junitbook/ejb/integration/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** .cvsignore 19 May 2003 18:08:50 -0000 1.2 --- .cvsignore 12 Sep 2003 09:24:11 -0000 1.3 *************** *** 4,5 **** --- 4,6 ---- target jbossresult.txt + .clover |
|
From: <vm...@us...> - 2003-09-12 09:24:09
|
Update of /cvsroot/junitbook/junitbook/coarse In directory sc8-pr-cvs1:/tmp/cvs-serv2317 Modified Files: .cvsignore Log Message: Added .clover directory to CVS ignore list. This dir is created by the Clover plugin for Eclipse. Index: .cvsignore =================================================================== RCS file: /cvsroot/junitbook/junitbook/coarse/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .cvsignore 8 Mar 2003 10:24:51 -0000 1.1 --- .cvsignore 12 Sep 2003 09:24:05 -0000 1.2 *************** *** 3,4 **** --- 3,5 ---- velocity.log target + .clover |
|
From: <vm...@us...> - 2003-09-12 09:24:02
|
Update of /cvsroot/junitbook/junitbook/fine In directory sc8-pr-cvs1:/tmp/cvs-serv2269 Modified Files: .cvsignore Log Message: Added .clover directory to CVS ignore list. This dir is created by the Clover plugin for Eclipse. Index: .cvsignore =================================================================== RCS file: /cvsroot/junitbook/junitbook/fine/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .cvsignore 8 Mar 2003 10:29:06 -0000 1.1 --- .cvsignore 12 Sep 2003 09:23:59 -0000 1.2 *************** *** 1 **** --- 1,2 ---- target + .clover |
|
From: <vm...@us...> - 2003-09-12 09:23:57
|
Update of /cvsroot/junitbook/junitbook/sampling In directory sc8-pr-cvs1:/tmp/cvs-serv2251 Modified Files: .cvsignore Log Message: Added .clover directory to CVS ignore list. This dir is created by the Clover plugin for Eclipse. Index: .cvsignore =================================================================== RCS file: /cvsroot/junitbook/junitbook/sampling/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** .cvsignore 27 May 2003 13:43:55 -0000 1.2 --- .cvsignore 12 Sep 2003 09:23:53 -0000 1.3 *************** *** 2,3 **** --- 2,4 ---- velocity.log maven.log + .clover |