Search the web
Sign In
New User? Sign Up
testdrivendevelopment · Test-driven Development
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

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 7566 - 7595 of 32011   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7566
... Good day. I've a war story about Robot vs jWebUnit. It started when yours truly was asked to look at client's performance metrics for a large enteprise...
Alexey Verkhovsky
alex_verk
Online Now Send Email
Nov 1, 2004
4:40 pm
7567
... This is the second call for participation I've seen in the last two weeks that has 2004 in the date. You folks must have a tough time with your...
J. B. Rainsberger
nails762
Offline Send Email
Nov 1, 2004
5:51 pm
7568
... Well, the first answer is simple: put known data in the database, run the test and check the result (in the database or wherever). After doing that for a...
J. B. Rainsberger
nails762
Offline Send Email
Nov 1, 2004
5:53 pm
7569
I have a question regarding TDD with Mock classes. Here is my situation: I have an abstract base class and 28 derived subclasses. I've created a mock for the...
Black, Dave (ICT)
coolvr4
Offline Send Email
Nov 2, 2004
4:54 pm
7570
... I don't understand. Why are you writing a mock for the class you are testing? Typically, we write mocks for class that we need to test other classes. Can...
Russell Gold
russgold
Online Now Send Email
Nov 2, 2004
5:14 pm
7571
... First, a question: why are you calling this TDD? I'd expect that the tests would be written concurrently with the classes if you were doing TDD. What am I...
Ron Jeffries
ronaldejeffries
Offline Send Email
Nov 2, 2004
5:31 pm
7572
On Thursday, Nov. 18th we're pleased to host Colin Sampaleanu from Interface21 (http://www.interface21.com) in Toronto. He's one of the authors of the open...
Dave Rooney
daverooneyca
Offline Send Email
Nov 2, 2004
5:48 pm
7573
The next Phoenix eXtreme Programming User Group meeting will be held on Monday, November 8th. This is an informal gathering of Phoenix area developers, project...
Steven Gordon
sfman2k
Offline Send Email
Nov 3, 2004
10:23 pm
7574
Hi All, What is the purpose of mock object ? I am not getting it clearly. Is there any link where I could understand these concepts. Regards, Sisvas....
sivas_twss
Offline Send Email
Nov 4, 2004
12:21 am
7575
... Hi, Based purely on your description of the problem (which I am probably misreading), it seems that: 1. You use the term "Mock" for something that isn't a...
Alexey Verkhovsky
alex_verk
Online Now Send Email
Nov 4, 2004
12:22 am
7576
... very ... Hi Russ, The only way I've seen to test abstract base classes is to write a mock that is really nothing more than a concrete instance of the base ...
coolvr4
Offline Send Email
Nov 4, 2004
12:22 am
7577
... the tests ... TDD. What ... Nothing - I'm new to the TDD Paradigm and still trying to get into doing true "TDD". One reason I'm having additional...
coolvr4
Offline Send Email
Nov 4, 2004
12:23 am
7578
... have a look around www.jmock.org or www.mockobjects.com S....
Steve Freeman
smg_freeman
Online Now Send Email
Nov 4, 2004
12:58 am
7579
... Ah - that is not what we call a "mock." That is simply a test implementation....
Russell Gold
russgold
Online Now Send Email
Nov 4, 2004
3:55 am
7580
Hello again! The previously announced meeting on Thursday, Nov. 18th has been rescheduled to Wednesday, Nov. 24th at 6:30 PM. Again, we're pleased to host...
Dave Rooney
daverooneyca
Offline Send Email
Nov 4, 2004
10:47 am
7581
... base ... implementation. Between the sources of documentation I've seen so far on TDD, various groups seem to use the term "mock" as a more loosely defined...
coolvr4
Offline Send Email
Nov 4, 2004
7:10 pm
7582
Another link you might find useful is this [1] link on MSDN. It focuses on Nmock but gives a good explanation with examples. (c#) [1] -...
Armand du Plessis
armand_dp
Offline Send Email
Nov 4, 2004
7:10 pm
7583
My understanding of TDD and mocks is that mocks are used to keep the unit testing in and around the unit. What that means is that when I'm TDDing a class that...
Udi Dahan
udidahan7
Offline Send Email
Nov 4, 2004
9:06 pm
7584
... I share this question, and wonder what it is about the object in the article that makes it not a mock object. I'd have said that a mock object is an...
Ron Jeffries
ronaldejeffries
Offline Send Email
Nov 4, 2004
10:19 pm
7585
... A lot of people distinguish between a stub and a mock where a stub is any implementation that fakes out an interface for testing and a mock is a very...
Kevin Lawrence
kevinwilliam...
Online Now Send Email
Nov 4, 2004
10:33 pm
7586
On Thu, 4 Nov 2004 17:19:05 -0500, Ron Jeffries ... Martin Fowler explains it better than I could <http://martinfowler.com/articles/mocksArentStubs.html>. It...
Russell Gold
russgold
Online Now Send Email
Nov 5, 2004
1:39 am
7587
The next Phoenix eXtreme Programming User Group meeting will be held on Monday, November 8th. This is an informal gathering of Phoenix area developers, project...
Steven Gordon
sfman2k
Offline Send Email
Nov 8, 2004
6:04 pm
7588
Hi to all, i have a gridcontrol which is bound to a list how could i test that? i have already test my datalayer which fills the list....
apostolis_bekiaris
apostolis_be...
Offline Send Email
Nov 9, 2004
2:19 pm
7589
... If the link between your data and grid is very simple, then the rule "don't test getters and setters" applies. You can refactor and add features without ...
Phlip
phlipcpp
Offline Send Email
Nov 9, 2004
2:49 pm
7590
hi philip u thnks for the reply but say i want to test could u please give a simple example on how to do it with the interface method u mention 1)'If the link...
apostolis_bekiaris
apostolis_be...
Offline Send Email
Nov 9, 2004
6:07 pm
7591
... Ask on the TestFirstUserInterfaces@yahoogroups.com mailing list, and provide platform details, and maybe a snip of code. ===== Phlip ...
Phlip
phlipcpp
Offline Send Email
Nov 9, 2004
6:18 pm
7592
Right now I am working on adding tests to an application without tests and I am curious to test some database properties. Has anyone actually used an Assert...
banshee858
Offline Send Email
Nov 10, 2004
8:56 pm
7593
I'm using xmldiffpatch to compare xml documents against the master copy. It ignores white space, attribute ordering etc. ...
Kari Hoijarvi
hoijarvi
Offline Send Email
Nov 11, 2004
3:14 pm
7594
I finally worked out a very simple way to include ConfigurationSettings.AppSettings in NUNIT projects. http://www.xml-blog.com/archives/000231.html I now want...
Andrew Jackson
glendhu3
Offline Send Email
Nov 11, 2004
4:54 pm
7595
We have a series of nUnit tests that each use a fairly large xml template file - each time we run a different test, this template file has to be loaded into...
japanbax
Offline Send Email
Nov 11, 2004
7:15 pm
Messages 7566 - 7595 of 32011   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