Hi, I am trying to automate testing of my Java-SWT application. I am facing problem with components like TabFolder, Table, Tree etc. The methods like...
Pankaj Shinde
pankaj.shinde@...
Jul 1, 2004 4:38 pm
7069
I didn't see anyone replying you. So I think I can help you a bit. You probably want to separate your model from the interface, so your class might be better...
Thanks, Harry! Are there standard steps you take when creating a new application? Do you have a typical routine that you go through when setting up your ...
We have noticed the same sort of smell. We have algorithms to test and we often need to make quite a few asserts in each test case to make sure that the...
Hi I'm very new to TDD and I have a question concerning design. I feel that I need to do some design if only to give myself to get an overall picture of the...
... Certainly you need use cases or stories, so you'll know what to do. That's not design, that's requirements. It's not wise to start programming without ...
... Very true. I design up front on every project. From the moment people start describing to me what they want, I start thinking about how I might do it. And...
s> I'm very new to TDD and I have a question concerning design. I feel s> that I need to do some design if only to give myself to get an s> overall picture of...
... This doesn't match my experience. In contrast, I found that the less experienced I was, the more I needed the feedback from actual coding - I just wouldn't...
Thanks for your advice. My drawings did take a while to create but I am a student and haven't had much practice, but I think I was doing to much. I agree that...
... In Specification by Example, it is common to use a lookup table to specify the expected input/output combinations. That is just how SbE works. My...
... Do enough to make yourself comfortable that you can pick a class and start writing tests. In TDD, the tests send feedback into the design, and so both...
... The less TDD experienced one is, typically the more one needed the feedback from actual coding to demonstrate that that feedback is sufficient to replace...
... Well, I guess it depends very much on personal experience, then. For me it was more like 1) lots of DUF, getting stuck, starting over 2) being frustrated...
Depending on team size, it is handy to do some design to get everyone moving in the same direction. Time limit the design activity. Probably less than about a...
... Just to add to the advice you have already had --- 1. Add Ron Jeffries Book to your list: Extreme Programming Adventures in C#. (And do not worry too ...
Hi, Michael Feathers' and Ilja Preuss' comments in the "Question about Design" thread made me think about how I tried TDD and got test infected. I am trying...
Hello, everyone. I have just undergone a server upgrade with my ISP and they now allow PHP in addition to perl. I am interested in exploring the possibilities ...
... You can just use PHP in stand alone scripts just like Perl, e.g.: #! /usr/bin/php <?php echo "hello world\n"; ?> Download PHP from <www.php.net> and play...
... I can't connect to the CVS server. It times out. I /did/ get a Hello, World thing going, which is great. I'd like some kind of Eclipse tie-in. I'll start...
Hi, J.B., Adrian, ... I've tried two libraries called PHPUnit. I think the one that is a part of the PEAR (http://pear.php.net) distribution is better. The...
On 6 Jul 2004, at 20:31, Hristo Deshev wrote: [snip] ... That's the one I used before - I didn't know there were two and trusted Google. My bad. ... ...
Hello everyone, SimpleTest is definitely worth a look, and the documentation appears just as complete as the tool itself. Haven't used TruStudio from Xored....
"there's all this time you have to wait while Visual Studio starts up" We were going to invest some time into making VS 2005 start up faster. Now I see that...
Hello testdrivendevelopment@yahoogroups.com, tt> Have you worked through Beck's or Astels' book? Kinda lame question from novice here. :) Can you name these...
... What has been always confusing me a little in TDD is that you aren't always able to make change in design without rewriting tests. If so you aren't always...