active questions tagged testing - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T08:04:40Zhttp://stackoverflow.com/feeds/tag/testinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1938579/how-can-i-remotely-execute-a-commands-on-a-windows-box-as-part-of-a-build-process0How can I remotely execute a commands on a Windows box as part of a build process?Matt Sheppard2009-12-21T06:50:33Z2009-12-21T07:05:22Z
<p>How can I remotely execute a commands on a Windows box as part of a build process?</p>
<p>If it matters, I want to initiate the commands from a linux machine which is performing the actual build.</p>
<p>To give some background...</p>
<p>A web application I am currently working on has, as part of the build process, a system for automatically reverting a linux VM, ssh-ing into it, installing the software, and then running a set of tests over the web interface. I'd like to do the same thing for Windows, but I'm not sure what the equivalent of ssh-ing in would be on a Windows machine.</p>
<p>Installing Cygwin to get sshd isn't an option (risks the system picking up some sort of cygwin dependency which this process is intended to prevent) and obviously something like remote desktop is fine for interactive use, but would not help me script the process (as far as I know).</p>
http://stackoverflow.com/questions/1661908/qa-function-whos-responsibilty-what-skills-to-look-for1QA Function - Who's Responsibilty? What skills to look for?Rob2009-11-02T15:22:03Z2009-12-21T03:54:31Z
<p>Our company is exploring hiring a QA specialist and I had a couple of questions. I'm not sure if there are any cut and dry answers here but any input is appreciated. Here are my questions:</p>
<ol>
<li><p>Would a QA tester report to the business side or the IT side? It seems like there may be benefits to either. </p></li>
<li><p>What skills are best - should we look for a veteran tester and expect to teach them the business, or should I look for someone who is familliar with the business and expect to turn them into a tester? </p></li>
</ol>
<p>Any additional tips or suggestions. Thanks.</p>
http://stackoverflow.com/questions/1824773/how-to-test-a-tcp-server-implementation1How to test a TCP server implementation?Hemant2009-12-01T08:32:29Z2009-12-20T22:30:51Z
<p>I have written a TCP server implementation using which I created an application which works as TCP echo service.</p>
<p>Now I want to test this echo server in terms of</p>
<ul>
<li>How many connections it can handle</li>
<li>What is the response time</li>
<li>How much memory and CPU it uses</li>
</ul>
<p>Please can you suggest any standard method/tools to test this echo server. I understand that both TCP and echo server implementation is fairly standard practice so I hope to find established tools to test it.</p>
<p>P.S.: I can write my own test application but I don't want to do it because if I see some problem, I need to be sure that it is my server that is doing it wrong. I don't want to end up testing my test client first.</p>
<p>I wrote this implementation using C# and .NET 3.5 though I believe it doesn't matter with reference to the question.</p>
http://stackoverflow.com/questions/1936843/how-to-submit-image-uploads-in-django-tests0How to submit image uploads in Django tests?Kyle MacFarlane2009-12-20T20:09:27Z2009-12-20T20:37:18Z
<p>The Django docs (<a href="http://docs.djangoproject.com/en/dev/topics/testing/#django.test.client.Client.post" rel="nofollow">http://docs.djangoproject.com/en/dev/topics/testing/#django.test.client.Client.post</a>) say to do this:</p>
<pre><code>>>> c = Client()
>>> f = open('wishlist.doc')
>>> c.post('/customers/wishes/', {'name': 'fred', 'attachment': f})
>>> f.close()
</code></pre>
<p>But when I do that the field has the error message "The submitted file is empty." That smells like a PIL issue but the form works fine on the actual site.</p>
<p>Reading the file and sending that instead of just a handle doesn't work either and behaves the same as passing an empty string.</p>
http://stackoverflow.com/questions/715808/generate-exponential-distribution-of-bucket-sizes1Generate exponential distribution of bucket sizessfink2009-04-03T21:30:53Z2009-12-20T19:28:17Z
<p>Given a series of incoming items, I want to assign each one to a bucket as it comes in. The bucket can either be a new one (one that has never been used before, of which there are an infinite supply) or it can be an existing bucket. If I look at the number of buckets with one item, the number with two, the number with three, etc., I want those bucket counts to follow an exponential distribution. I hope I'm saying that correctly -- if 80% of the buckets have 1 item, then 16% should have two, 3.2% should have three, etc. In general, the number of buckets of size k should be 1/p as many as the number of buckets of size k-1, and the fraction of buckets that are size 1 should be (1-p) to make the math work out right.</p>
<p>If I knew the number of items in advance, it would be easy: I'd know how many buckets of each size, so I can just pile the the items into as many buckets of each size as I needed. Or if I were just generating bucket sizes, it'd be easy even if I didn't know the total in advance: each new bucket has probability (1-p) of being size 1, (1-p)p of being size 2, (1-p)p^2 size 3, (1-p)p^3 size 4, etc.</p>
<p>But I am processing <em>items</em>, so as I get an item in, I need to choose a bucket: either an existing one, or a new one. If I make a new bucket, then I get one more of size 1. But if I choose an existing one of size k, then I get one more bucket of size k+1, and one <strong>fewer</strong> of size k. So what should the probability of choosing a bucket of size k be (where k can be zero to indicate making a new bucket)? And how does it relate to p?</p>
<p>I am doing this to generate test data where I only know the mean number of items per bucket (1.5, it turns out), don't know the number of items in advance, and think that the exponential distribution of bucket sizes is realistic for my situation. I'm probably making it more complicated than it needs to be, but I was surprised because I thought it would be easy.</p>
<p>And maybe it is, but I'm just missing something. (And I can't figure out how to Google it, either.)</p>
http://stackoverflow.com/questions/160001/imacros-is-good-but-unreliable-is-there-any-alternative0iMacros is good but unreliable. Is there any alternative?1112008-10-01T22:11:55Z2009-12-20T14:08:03Z
<p>iMacros is a very nice tool which allows to authomatically fill HTML forms and extract content, includes cycles and many other features. The problem is that it is quite tricky to make it extracting content properly. For example, I have failed to extract all London-to-Tokio flight prices for all the dates between 1/10/08 to 1/12/08 to find a cheapest one from expedia. Sometimes it just crashes. Does anyone know any good alternative?</p>
http://stackoverflow.com/questions/1932706/django-test-clients-context-is-empty-from-the-shell0Django: Test client's context is empty from the shellMert Nuhoglu2009-12-19T11:47:39Z2009-12-19T15:43:31Z
<p>I cannot access the <code>context</code> attribute of an <code>HttpResponse</code> object from ipython. But the unit test accesses <code>context</code>.</p>
<p>Here is the unit test. The test run passes properly:</p>
<pre><code>from django.test import Client, TestCase
from django.core import mail
class ClientTest(TestCase):
def test_get_view(self):
data = {'var': u'\xf2'}
response = self.client.get('/test04/', data)
# Check some response details
self.assertContains(response, 'This is a test')
self.assertEqual(response.context['var'], u'\xf2')
</code></pre>
<p>Here is the code that I used in the shell:</p>
<pre><code>In [10]: from django.test import Client
In [11]: c = Client()
In [12]: r = c.get('/test04/', data)
In [13]: r.context
In [14]: type(r.context)
Out[14]: <type 'NoneType'>
</code></pre>
<p><code>response.context</code> is none in the shell whereas <code>response.context</code> exists in the unit test. </p>
<p>Why does <code>HttpResponse</code> behave inconsistently between the shell and unit test?</p>
http://stackoverflow.com/questions/212863/how-can-i-run-nunitselenium-grid-tests-in-parallel5How can I run NUnit(Selenium Grid) tests in parallel?Benjamin Lee2008-10-17T16:28:38Z2009-12-19T12:45:13Z
<p>My current project uses NUnit for unit tests and to drive UATs written with Selenium. Developers normally run tests using ReSharper's test runner in VS.Net 2003 and our build box kicks them off via NAnt.</p>
<p>We would like to run the UAT tests in parallel so that we can take advantage of Selenium Grid/RCs so that they will be able to run much faster.</p>
<p>Does anyone have any thoughts on how this might be achieved? and/or best practices for testing Selenium tests against multiple browsers environments without writing duplicate tests automatically?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1931841/what-is-your-favorite-programming-snack0What is your favorite programming snack? [closed]Brandon2009-12-19T03:23:21Z2009-12-19T04:06:23Z
<pre><code>#include <iostream>
using namespace std;
#include <string>
//using std::string;
void favoriteSnack ();
int main()
{
favoriteSnack();
return 0;
}
void favoriteSnack()
{
string answer;
cout << "What is your favorite programming snack?" << endl;
cin >> answer;
}
</code></pre>
<p>What would be some appropriate test values?</p>
http://stackoverflow.com/questions/1924187/testing-tool-for-browser-resolution-issues0Testing tool for browser/resolution issuesskriv2009-12-17T19:59:04Z2009-12-18T23:09:55Z
<p>I just looked at my site (<a href="http://softserv.ca" rel="nofollow">http://softserv.ca</a>) on a laptop and the background images used along the top and top-right looked horrible -- very grainy and striated. It was IE8 on XP. I couldn't check the screen resolution, but it didn't look like anything out of the ordinary.</p>
<p>I'd like to know what typically causes such striation, and also, I know there are tools out there for testing cross-browser. What are the best ones? Thx</p>
http://stackoverflow.com/questions/1593348/improving-work-procedures-programmer-to-developer-woes6Improving Work Procedures - Programmer To Developer WoesKezzer2009-10-20T09:06:33Z2009-12-18T21:01:57Z
<p>I finally plucked up the courage to go and formally complain to the heads about my boss. What's really scary is that the claims I have made are serious enough to be taken to the CEO in a couple of weeks. I've been asked today to procure some documents referring to some points I have outlined and wanted some real-world developer input on these points.</p>
<p>The following are things I have raised as a part of my complaint:</p>
<ul>
<li>We have no formal architecture. We use code-behind only, and code-behind is what's used to open database connections, and pass SQL queries in with parameters. There are literally thousands upon thousands of pages. I propose at the very least a three-tier architecture, but I'd rather use MVC architectures. How does this ad-hoc approach affect work towards large web systems?</li>
<li>We have no documentation outlining all our processes and how things work. What kind of impact could this have on us as a team and individually? Does it slow us down? (I believe it does in a considerable way)</li>
<li>Bug tracking. We use none, despite bugs flowing in constantly every day. Need I say anything more?</li>
<li>Testing. We have no formal testing methods, we just use TIAS.</li>
<li>Usability. It's an intranet system used by hundreds of people, yet none of us are trained in UI development (in fact, I'm the only one who improves usability based on my UI studies)</li>
</ul>
<p>I'm not asking anyone to write any of it, but if anyone has any statistics, or evidence-based facts to help improve my report. Already I've been quoting out of many books I read to use.</p>
<p>Just as a side note, I am the only person employed who has any formal education in what we do. We're a team of programmers, I have a degree in Computer Science and currently studying a masters degree. So from a "personnel" point of view, does anyone have any tips? I realise there are many-a-people here whom are far more experienced developers than me, so your input is greatly appreciated.</p>
<p>Cheers!</p>
<p><strong>EDIT</strong></p>
<p>So I wrote a very, very long e-mail to the management. For those of you who were wondering why I'd taken it to upper management as opposed to my immediate manager whom assigns me all my work is that I have previously raised the issues and they've been ignored.</p>
<p>Many points you all raised were very insightful so I decided to change my approach. Whilst I may have been hot-headed about it initially I decided to instead work on building as opposed to tearing down and stated that the changes could and would only have to be made incrementally. They were rather suggestions as opposed to statements slating our current systems. I've been recommended to raise these issues in my upcoming appraisals directly to my boss on a one-to-one basis, this is far more suggestive than getting someone else to do it.</p>
http://stackoverflow.com/questions/1164630/testing-problems-upgrading-from-grails-1-0-5-to-1-1-10Testing Problems upgrading from grails 1.0.5 to 1.1.1Jared2009-07-22T11:28:49Z2009-12-18T20:19:06Z
<p>I recently upgraded to grails 1.1.1 and while my application works fine, my tests are having some serious issues:</p>
<p>for unit tests some mocks are failing, it seems like anything that calls a method from a domain class isn't working, for instance</p>
<p>def boolean isParameterized() {
return (parameters != null && !parameters.isEmpty())
}</p>
<p>is called by an if statement in a controller, and in the test for the controller (which extends the ControllerUnitTestCase) this mock is created</p>
<p>reportDefinitionControl.demand.isParameterized { ->
return false
}</p>
<p>but when I run the tests, isParametrized is true, which is made more confusing by the fact that the mocked instance would have isParametrized be false anyway, because parameters is empty.</p>
<p>For my integration tests, it seems like the application can't compile and I get error messages like</p>
<p>[INFO] Compilation Error: Compilation Failed
[INFO] Error running integration tests: java.lang.ClassNotFoundException: project.alert.AlertTypeTests
[WARNING] java.lang.ClassNotFoundException: project.alert.AlertTypeTests</p>
<p>anybody got any tips?</p>
http://stackoverflow.com/questions/1929924/how-can-we-decide-which-testing-method-can-be-used0How can we decide which testing method can be used?Sikender2009-12-18T18:30:15Z2009-12-18T19:00:28Z
<p>i have project in .net , i want to test it. </p>
<p>But i dont know anything about testing and its method. </p>
<p>how can i go ahead with testing. </p>
<p>which method is better for me for begining?</p>
<p>Is there anything to decide which testing method is taken into account for better result?</p>
http://stackoverflow.com/questions/1928968/testing-controller-instance-variables-with-racktest-and-sinatra4Testing controller instance variables with Rack::Test and SinatraBrian2009-12-18T15:46:57Z2009-12-18T17:00:18Z
<p>I have a Sinatra app that serves pages as read-only or editable depending on if the user is logged in.</p>
<p>The controller sets a variable <code>@can_edit</code>, that is used by the views to hide/show edit links. How can I test <code>@can_edit</code>'s value in my tests? I have no idea how to get at the current instance of the controller under Rack::Test.</p>
<p>I use <code>class_eval</code> to stub the <code>logged_in?</code> method in the controller, but I'm having to resort to checking <code>last_response.body</code> for my edit links to see if <code>@can_edit</code> has been set or not. </p>
<p>How can I test the value of <code>@can_edit</code> directly?</p>
http://stackoverflow.com/questions/1928534/how-to-simulate-lower-cpu-processor-machines-for-browser-testing3How To Simulate Lower CPU Processor Machines For Browser Testinggrassbl8d2009-12-18T14:32:37Z2009-12-18T16:31:17Z
<p>Hi,</p>
<p>We have some users which are using lower cpu powered machines and they're encountering slow rersponse times using our web application. Is there anyway for me to be able to do testing so that I can simulate lower cpu rates? </p>
<p>For example, I have 2.3 ghz right now computing power, can i lower it to somehow 1.6 ghz or lower so that i may be able to test it?</p>
<p>Btw, our customers are using windows. I have to simulate low computing power on Internet Explorer as browser.</p>
<p>thanks</p>
http://stackoverflow.com/questions/1907963/in-functional-testing-should-i-compare-all-tabular-data-rendered-in-the-browser0In functional testing, should I compare all tabular data rendered in the browser with the one coming from the DB?khelll2009-12-15T14:51:39Z2009-12-18T09:57:26Z
<p>I'm working on a test plan for a website where some tests are taking the following path:</p>
<ol>
<li>Hit the requested URI and get the data rendered inside some table(20 rows per page).</li>
<li>Make a database query to get the data that is supposed to be rendered in that table.</li>
<li>Compare the 2 data row by row, they should match.</li>
</ol>
<p>Is that a correct way of doing functional testing? If that request was an Ajax request, what will be the answer also? Would the answer differ for integration testing?</p>
<p>I have some reason that makes me believe that this is wrong somehow.... still need your opinions guys!</p>
http://stackoverflow.com/questions/1921205/how-can-i-test-my-webpage-in-different-ie-versions0How can I test my webpage in different IE versions?newbie2009-12-17T11:45:34Z2009-12-18T09:41:15Z
<p>I can only have one IE version installed, but I need to make sure that webpages work on various IE versions, how can I do that without other computers?</p>
http://stackoverflow.com/questions/719624/selenium-vs-windmill1selenium vs windmillflybywire2009-04-05T20:28:11Z2009-12-17T19:05:46Z
<p>Selenium vs. Windmill, what are your experiences, what do you recommend?</p>
http://stackoverflow.com/questions/1916580/how-do-you-write-your-qtp-tests1How do you write your QTP Tests?Josh Harris2009-12-16T18:14:41Z2009-12-17T15:04:14Z
<p>I am experimenting with using QTP for some webapp ui automation testing and I was wondering how people usually write their QTP tests. Do you use the object map, descriptive programming, a combination or some other way all together? Any little code example would be appreciated, Thank you</p>
http://stackoverflow.com/questions/1921348/using-paxexam-to-test-a-bundle-which-has-a-bundle-classpath-in-the-manifest0Using PaxExam to test a bundle which has a Bundle-Classpath in the manifestJames Carr2009-12-17T12:12:13Z2009-12-17T12:23:16Z
<p>I'm trying to test a bundle using PaxExam which has two embedded jars, referenced by the Bundle-Classpath in the manifest.</p>
<p>When trying to access the service that the bundle supplies from within PaxExam I receive an ExceptionInInitializerError:</p>
<blockquote>
<p>Caused by: java.lang.RuntimeException: Unable to load either XMLPull or StAX parser - check classpath for interface and implementation jars<br>
XMLPull error java.lang.ExceptionInInitializerError: null<br>
StAX error java.lang.NoClassDefFoundError: javax/xml/stream/FactoryConfigurationError</p>
</blockquote>
<p>The bundle works fine in a standalone equinox instance and from within Eclipse.</p>
<p>I've tried adding the JARs to the project classpath and using the bootClasspathLibrary option in the PaxExam config but no luck.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1921085/simulation-and-synthetic-video-generation-for-evaluation-of-computer-vision-algor2Simulation and synthetic video generation for evaluation of computer vision algorithmsf3lix2009-12-17T11:21:26Z2009-12-17T12:02:53Z
<p>I am looking for an easy way to generate synthetic videos to test computer vision software.</p>
<p>Currently I am only aware of one tool that targets this need:
<a href="http://development.objectvideo.com/index.html" rel="nofollow">ObjectVideo Virtual Video (OVVV)</a>. It is a HalfLife 2 mod that allows to simulate cameras in a virtual world. </p>
<p>But I am looking for a more open (like in open source) and maybe portable solution. One way would be to implement the needed functionality on top of one of the dozen open-source 3D engines. Though, it would be great if somebody knows a library or tool that already implements something like OVVV does.</p>
<p>Also, if you do not no a ready-to-use solution: how would you tackle the problem?</p>
<p>PS: The reason I ask here is that I want to minimize my efforts spent on this issue. It's not that I had no idea how to do it. But my solutions would require me to invest to much time into this. So I am looking for concrete tips here ... :-)</p>
http://stackoverflow.com/questions/1920868/are-there-any-good-tools-for-testing-websites-developed-for-mobile-phones0Are there any good tools for testing websites developed for mobile phones? undefined2009-12-17T10:43:19Z2009-12-17T10:46:14Z
<p>I am developing a few webpages designed to be accessed by mobile phone (WAP, 3G) and came accross an <a href="http://emulator.mtld.mobi/emulator.php" rel="nofollow">emulator</a> at dotMobi. What other tools are there for mobile development? Is there such as thing as ySlow for mobile? I need to use cookies so want a tool that can help debug cookies and check that they work for different phones and mobile browsers.</p>
<p>Whats out there? </p>
http://stackoverflow.com/questions/1916442/reliably-reproducing-db-contention1reliably reproducing db contentioneqbridges2009-12-16T17:54:42Z2009-12-16T21:58:15Z
<p>we experience with some regularity contention on a database table, and would like to evaluate a number of different options for resolving this issue.</p>
<p>in order to do so, i need to reproduce in a test case, contention on a table (any table) with repeatable reliability.</p>
<p>the approach i'm considering would be to reverse the semantics of a lock (e.g. <code>java.util.concurrent.locks.ReentrantLock</code>) and to release the lock when writing on the table begins, allowing all reads to occur at the time when the writing begins. </p>
<p>So therefore one writer thread holds the lock until shortly before doing an insert to a table, and then releasing the lock, multiple reader threads would attempt to run select statements against the same table.</p>
<p>Was wondering if there were any thoughts on such an approach, or if there is a simpler approach that could, with 100% reliability, reproduce contention on a db table.</p>
<p>thanks</p>
http://stackoverflow.com/questions/1914066/can-someone-suggest-the-most-active-software-testing-forum1can someone suggest the most active software testing forum ? [closed]rover122009-12-16T11:27:14Z2009-12-16T21:44:47Z
<p>can someone suggest the most active software testing forum ?</p>
http://stackoverflow.com/questions/1732442/unit-tests-for-jpa-persistence-in-general0Unit Tests for JPA/Persistence in GeneralDrew2009-11-13T23:02:24Z2009-12-16T19:50:43Z
<p>How/would you test super-simple methods that are built on a persistence engine. I'm going to use JPA but any persistence mechanism I'm sure has its equivelents.</p>
<p>For example...</p>
<pre><code>@Entity
public class Category {
@Id @GeneratedValue
private long id;
@NotNull @NotEmpty
private String name;
@NotNull
@ManyToOne
private User user;
//...Getters/Setters...
}
@Stateless
public void CategoryServiceImpl implements CategoryService {
@PersistenceContext EntityManager entityManager;
public void addCategory(Category input) {
entityManager.persist(input);
}
}
</code></pre>
<p>What kind of tests would be useful for addCategory. I can see the usefulness of TDD and unit testing but I'm just not sure what kinds of tests to do for simple methods like that. Not really looking for "how" to create the tests but "what" to test.</p>
http://stackoverflow.com/questions/1451281/tdd-in-a-text-file-import-project2TDD in a text file import projectProfK2009-09-20T15:32:05Z2009-12-16T19:46:32Z
<p>I'm just starting, and yes, i haven't written any tests yet (I'm not a fundamentalist, I don't like compile errors just because there is no test), but I'm wondering where to get started on doing a project that parses fixed length flat file records according to an XML mapping, into a class that represents the superset of all file layouts, before writing (with transformation) the class details to a DB table.</p>
<p>There are so many external factors, and I don't want to mock them all, so where or how would be a good way to start test driving this project?</p>
http://stackoverflow.com/questions/928652/how-to-reduce-the-time-spent-on-testing3How to reduce the time spent on testing?Shuoling Liu2009-05-30T00:38:01Z2009-12-16T19:45:25Z
<p>I just looked back through the project that nearly finished recently and found a very serious problem. I spent most of bank time on testing the code, reproducing the different situations "may" cause code errors.</p>
<p>Do you have any idea or experience to share on how to reduce the time spent on testing, so that makes the development much more smoothly?</p>
<p>I tried follow the concept of test-driven for all my code , but I found it really hard to achieve this, really need some help from the senior guys here.</p>
<p>Thanks</p>
<p>Re: all</p>
<p>Thanks for the answers above here, initially my question was how to reduce the time on general testing, but now, the problem is down to how to write the effecient automate test code.</p>
<p>I will try to improve my skills on how to write the test suit to cut down this part of time.</p>
<p>However, I still really struggle with how to reduce the time I spent on reproduce the errors , for instance, A standard blog project will be easy to reproduce the situations may cause the errors but a complicate bespoke internal system may "never" can be tested throught out easily, is it worthy ? Do you have any idea on how to build a test plan on this kind of project ?</p>
<p>Thanks for the further answers still. </p>
http://stackoverflow.com/questions/1024074/can-a-test-class-become-a-god-object3Can a test class become a "God object"?Jason Baker2009-06-21T14:48:17Z2009-12-16T19:45:09Z
<p>I'm working on a backend for an open source Python ORM. The library includes a set of 450 test cases for each backend, all lumped into one giant test class.</p>
<p>To me, that sounds like a lot for one class, but I've never worked on a project that <em>has</em> 450 test cases (I believe this library has ~2000 test cases not including the test cases for each backend). Am I correct in feeling this is a bit on the high end (given that there's not really any magic number above which you should break something up), or is it just not as big a deal for a test class to have so many tests?</p>
<p>And even if that's not too many test cases, how would one go about refactoring an overly large test class? Most of my knowledge about refactoring is around making sure that tests are in place for the code that's being refactored. I've never had to deal with a situation where it's the tests themselves that need to be refactored.</p>
<p><strong>EDIT</strong>: Previously, I had said that these were unit tests, which isn't quite true. These are more appropriately termed integration tests.</p>
http://stackoverflow.com/questions/797026/test-driven-development-book6Test driven development bookDarth2009-04-28T09:35:24Z2009-12-16T19:33:19Z
<p>What book would you recommend to learn test driven development? Preferrably language agnostic.</p>
http://stackoverflow.com/questions/1017864/discovering-other-objects-while-doing-tdd6Discovering other objects while doing TDDLieven2009-06-19T13:03:33Z2009-12-16T19:33:07Z
<p>I am <em>trying</em> to practice TDD. </p>
<p>As I understand it, doing TDD should go like this</p>
<ol>
<li>I write a test list for the interface/class I am going to develop.</li>
<li>I start with the easiest yet to implement test from my test list.</li>
<li>The test gets written, no implementation code yet.</li>
<li>The interface of the class gets written to make the code compile.</li>
<li>The test gets run, giving me a failing test.</li>
<li>The implementation gets written, making the test pass.</li>
<li>Refactor the code written.</li>
<li>goto 2.</li>
</ol>
<p>The problem I have is that when I arrive at point 6 & 7, at some point in time I invariably come to the conclusion that the implementation I just wrote should be delegated to another class.</p>
<p>What should a true TDD'r do at this point?</p>
<ol>
<li>Leave the existing test list alone for a while and create a new one<br />
for the new class. (but the same problem can arise when implementing the
new class)</li>
<li>Go the interaction based way of testing and Mock the new class, continue
with the testcases of the class you are working on and come back later to
create a correct implementation of the mocked class.</li>
<li>This situation should not present itself, I have not thought out my
initial design well enough. (wouldn't that defeat the purpose of TDD). </li>
</ol>
<p>I would love to know how other people handle these situations.</p>