Search the web
Sign In
New User? Sign Up
ocpatterns · Orange County Design Patterns Study Grp
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1432 - 1461 of 1602   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1432
At our first meeting of the JUnit Recipes study group we decided to meet on the first and third Wednesday of each month. That means this Wednesday we will...
Paul Moore
paulmoore2
Offline Send Email
Apr 4, 2006
6:21 am
1433
... i'll be there. thanks ... vice-chair http://ocjug.org/...
Ray Tayek
rtayek
Offline Send Email
Apr 6, 2006
2:11 am
1434
hi, nice meeting. new guy (steve?), here is an easy way to start groking nunit: <http://www.xprogramming.com/xpmag/acsUsingNUnit.htm> or ...
Ray Tayek
rtayek
Offline Send Email
Apr 6, 2006
5:51 am
1435
hi, was thinking about pairs and how they relate to collecting parameter: <http://www.industriallogic.com/xp/refactoring/accumulationToCollection.html>. iirc,...
Ray Tayek
rtayek
Offline Send Email
Apr 9, 2006
7:42 am
1436
Have you tried to use [TestFixtureSetUp] (and [TestFixtureTearDown]) to perform class level initialization? Alex ... 1",r1==previous); ... ...
yafei2003liu
Online Now Send Email
Apr 11, 2006
1:50 am
1437
... i was confused about a few things. nunit only constructs the test fixture once (unlike junit). thanks ... vice-chair http://ocjug.org/...
Ray Tayek
rtayek
Offline Send Email
Apr 11, 2006
7:41 am
1438
Do you mean the method marked with [SetUp] will be called only once? That's strange, because it should work just like JUnit. Some of my NUnit classes (in C#)...
yafei2003liu
Online Now Send Email
Apr 11, 2006
3:10 pm
1439
As usual, Alex is right... :) http://cvs.sourceforge.net/viewcvs.py/nunit/nunit.org/setupTeardown.html?rev=1.6 ... From: yafei2003liu To:...
scott@...
shodson
Online Now Send Email
Apr 11, 2006
3:35 pm
1440
... I think this was the distinction that was causing the confusion. JUnit creates a separate instance of the test fixture (i.e., the class containing the test...
Paul Moore
paulmoore2
Offline Send Email
Apr 11, 2006
4:45 pm
1441
... [Alex] JUnit will not create a separate instance for each test method, it shouldn't do so since by doing so will void original xUnit design (see Kent...
yafei2003liu
Online Now Send Email
Apr 11, 2006
5:18 pm
1442
... Being the test-first guy that I am, I wrote a test before I posted. Guess what? Under Eclipse 3.1.1 and JUnit 3.8.1 it does create a separate instance of...
Paul Moore
paulmoore2
Offline Send Email
Apr 11, 2006
5:39 pm
1443
That's very interesting. Have you tried to run JUnit using JUnit's own test runner (either console or GUI version). It may have something to do with how...
yafei2003liu
Online Now Send Email
Apr 11, 2006
5:52 pm
1444
... no ... it does ... right. and this unlike junit who constructs the test suite before each test. ... vice-chair http://ocjug.org/...
Ray Tayek
rtayek
Offline Send Email
Apr 11, 2006
11:36 pm
1445
... seems to do the same thing when called from command line using textui test runner thanks ... vice-chair http://ocjug.org/...
Ray Tayek
rtayek
Offline Send Email
Apr 12, 2006
2:55 am
1446
It has been a while since I worked with JUnit last time, it appears to me it has changed a lot. Well, I guess we have to live with what it does not. Still,...
yafei2003liu
Online Now Send Email
Apr 12, 2006
3:30 am
1447
... package p; import junit.framework.JUnit4TestAdapter; import org.junit.*; public class SimpleTest { protected int fValue1; protected int fValue2; public...
Ray Tayek
rtayek
Offline Send Email
Apr 12, 2006
8:19 am
1448
... I didn't use annotations since my current work setup is JDK 1.4 and JUnit 3.8. Ray took care of the JDK 1.5 and JUnit 4.0 experiment ... I'm assuming the...
Paul Moore
paulmoore2
Offline Send Email
Apr 12, 2006
3:40 pm
1449
... he was afraid to come into my garage :) ... yes, i do this all the time. ... thanks ... vice-chair http://ocjug.org/...
Ray Tayek
rtayek
Offline Send Email
Apr 13, 2006
2:13 am
1450
Reminder from the Calendar of ocpatterns http://groups.yahoo.com/group/ocpatterns/cal Study Group - JUnit Recipes Wednesday April 19, 2006 7:00 pm - 9:00 pm ...
ocpatterns@yahoogroup...
Send Email
Apr 18, 2006
2:57 am
1451
#include "stdafx.h" using namespace System; using namespace NUnit::Framework; [TestFixture] public ref class ATestFixture { public: [Test] void test1() {} }; ...
Ray Tayek
rtayek
Offline Send Email
Apr 20, 2006
5:36 pm
1452
... it does work in c#, and fails in mc++. seems to be due to some kind of optimization c++ does (behind you back) since it thinks this is not a dll. thanks ...
Ray Tayek
rtayek
Offline Send Email
Apr 21, 2006
1:56 pm
1453
hi, found the hook in ecliplse t make the all tests. that's helpful. it does not recurse though. i usually ending up with some other init and logging code (see...
Ray Tayek
rtayek
Offline Send Email
Apr 21, 2006
2:09 pm
1454
fyi: http://industriallogic.com/rtpdata/index.html ... vice-chair http://ocjug.org/...
Ray Tayek
rtayek
Offline Send Email
Apr 24, 2006
4:24 am
1455
Reminder from the Calendar of ocpatterns http://groups.yahoo.com/group/ocpatterns/cal Study Group - JUnit Recipes Wednesday May 3, 2006 7:00 pm - 9:00 pm (This...
ocpatterns@yahoogroup...
Send Email
May 1, 2006
2:55 am
1456
At 07:55 PM 4/30/2006, you wrote: ... i should be there. thanks ... vice-chair http://ocjug.org/...
Ray Tayek
rtayek
Offline Send Email
May 2, 2006
1:46 am
1457
some one posted this to the la stify group: <http://joelonsoftware.com/articles/DevelopmentAbstraction.html>. interesting read. ... vice-chair...
Ray Tayek
rtayek
Offline Send Email
May 4, 2006
12:58 am
1458
Wow, was Joel in Orange County this week? I saw the picture of the Laguna Beach life guard tower and some other SoCal-looking sites in the article. ... . ....
Scott Hodson
shodson
Online Now Send Email
May 4, 2006
1:14 am
1459
hi, flat tire on the 22/405 separation stopped me. how far did we get? appendix a yet? thanks ... vice-chair http://ocjug.org/...
Ray Tayek
rtayek
Offline Send Email
May 4, 2006
7:39 pm
1460
Visit http://www.ocruby.org/?p=12 <http://www.ocruby.org/> for details. We'll be doing some hand-on coding as well, bring a laptop. Agenda ===================...
Scott Hodson
shodson
Online Now Send Email
May 11, 2006
3:50 am
1461
Reminder from the Calendar of ocpatterns http://groups.yahoo.com/group/ocpatterns/cal Study Group - JUnit Recipes Wednesday May 17, 2006 7:00 pm - 9:00 pm ...
ocpatterns@yahoogroup...
Send Email
May 15, 2006
2:56 am
Messages 1432 - 1461 of 1602   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help