active questions tagged tdd - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T13:10:25Z http://stackoverflow.com/feeds/tag/tdd http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1802975/unit-testing-modalwindows-content-refresh-fails-while-the-actual-functionality-w 0 Unit testing ModalWindow's content refresh fails while the actual functionality works as expected - what am I doing wrong? Esko 2009-11-26T10:48:26Z 2009-11-27T23:38:51Z <p>So, I've spent a couple of hours first trying to "fix" this myself and then Googling like a madman but didn't find anything that would've helped so now I'm here.</p> <p>Basically I have a custom <code>Panel</code> within Wicket's own <code>ModalWindow</code> and since I like unit testing, I want to test it. The specific behavior here is refreshing the <code>ModalWindow</code>'s content: In my actual code from where I extracted this the Ajax event handling actually reloads new stuff to the content panel, I just removed those to make this shorter.</p> <p>So, here's the <code>Panel</code>'s code</p> <pre><code>package wicket.components; import org.apache.wicket.ajax.AjaxRequestTarget; import org.apache.wicket.ajax.markup.html.form.AjaxButton; import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow; import org.apache.wicket.markup.html.form.Form; import org.apache.wicket.markup.html.panel.Panel; import org.apache.wicket.model.*; public class MyModalWindowPanel extends Panel { private Form form; private ModalWindow modal; public MyModalWindowPanel(String id, ModalWindow modal) { super(id); this.setOutputMarkupId(true); this.modal = modal; initializeForm(); addBasicDataFieldsToForm(); add(campaignForm); } private void initializeForm() { form = new Form("form"); form.setOutputMarkupId(true); } private void addBasicDataFieldsToForm() { campaignForm.add(new AjaxButton("infoSubmit", new Model&lt;String&gt;("Ajaxy Click")) { protected void onSubmit(AjaxRequestTarget target, Form&lt;?&gt; form) { modal.setContent(new MyModalWindowPanel(modal.getContentId(), modal)); modal.show(target); } }); } } </code></pre> <p>and the corresponding markup</p> <pre><code>&lt;wicket:panel&gt; &lt;form wicket:id="form"&gt; &lt;input type="submit" value="Ajaxy Click" wicket:id="infoSubmit" /&gt; &lt;/form&gt; &lt;/wicket:panel&gt; </code></pre> <p><strong>Do note that when run in servlet container such as Tomcat, this works correctly - there's no functional bugs here!</strong></p> <p>So what's the problem then? I'm not seemingly able to get the <em>unit test</em> for this to work! My test class for the panel looks like this</p> <pre><code>package wicket.components; import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow; import org.apache.wicket.markup.html.panel.Panel; import org.apache.wicket.util.tester.*; import junit.framework.TestCase; public class MyModalWindowPanelTestCase extends TestCase { private WicketTester tester; private ModalWindow modal; @Override protected void setUp() throws Exception { tester = new WicketTester(); modal = new ModalWindow("modal"); tester.startPanel(new TestPanelSource() { public Panel getTestPanel(String id) { return new MyModalWindowPanel(id, modal); } }); } public void testReloadingPanelWorks() throws Exception { // the next line fails! tester.executeAjaxEvent("panel:campaignForm:campaignInfoSubmit", "onclick"); tester.assertNoErrorMessage(); } } </code></pre> <p>and here's the resulting stacktrace of running that</p> <pre><code>java.lang.IllegalStateException: No Page found for component [MarkupContainer [Component id = modal]] at org.apache.wicket.Component.getPage(Component.java:1763) at org.apache.wicket.RequestCycle.urlFor(RequestCycle.java:872) at org.apache.wicket.Component.urlFor(Component.java:3295) at org.apache.wicket.behavior.AbstractAjaxBehavior.getCallbackUrl(AbstractAjaxBehavior.java:124) at org.apache.wicket.ajax.AbstractDefaultAjaxBehavior.getCallbackScript(AbstractDefaultAjaxBehavior.java:118) at org.apache.wicket.ajax.AbstractDefaultAjaxBehavior.getCallbackScript(AbstractDefaultAjaxBehavior.java:106) at org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow$WindowClosedBehavior.getCallbackScript(ModalWindow.java:927) at org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow.getWindowOpenJavascript(ModalWindow.java:1087) at org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow.show(ModalWindow.java:352) at wicket.components.MyModalWindowPanel$1.onSubmit(MyModalWindowPanel.java:45) at org.apache.wicket.ajax.markup.html.form.AjaxButton$1.onSubmit(AjaxButton.java:102) at org.apache.wicket.ajax.form.AjaxFormSubmitBehavior.onEvent(AjaxFormSubmitBehavior.java:143) at org.apache.wicket.ajax.AjaxEventBehavior.respond(AjaxEventBehavior.java:177) at org.apache.wicket.ajax.AbstractDefaultAjaxBehavior.onRequest(AbstractDefaultAjaxBehavior.java:299) at org.apache.wicket.util.tester.BaseWicketTester.executeAjaxEvent(BaseWicketTester.java:1236) at org.apache.wicket.util.tester.BaseWicketTester.executeAjaxEvent(BaseWicketTester.java:1109) at wicket.components.MyModalWindowPanelTestCase.testReloadingPanelWorks(MyModalWindowPanelPanelTestCase.java:31) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at junit.framework.TestCase.runTest(TestCase.java:168) at junit.framework.TestCase.runBare(TestCase.java:134) at junit.framework.TestResult$1.protect(TestResult.java:110) at junit.framework.TestResult.runProtected(TestResult.java:128) at junit.framework.TestResult.run(TestResult.java:113) at junit.framework.TestCase.run(TestCase.java:124) at junit.framework.TestSuite.runTest(TestSuite.java:232) at junit.framework.TestSuite.run(TestSuite.java:227) at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:81) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:46) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) </code></pre> <p>So, <strong>how can/should I fix my unit test so that it would pass?</strong></p> http://stackoverflow.com/questions/1805981/database-free-nunit-tests 0 Database free NUnit tests SonOfOmer 2009-11-26T22:38:52Z 2009-11-27T10:02:26Z <p>How can I test my code (TDD) for standard CRUD operations without having a database. Is it possible to achieve such level of isolation so that my code is database independent. </p> <p>Thanks a lot guys.</p> http://stackoverflow.com/questions/229333/gwt-unit-testing-tdd-and-tooling 1 GWT Unit Testing TDD and Tooling Roundcrisis 2008-10-23T11:07:18Z 2009-11-26T17:02:39Z <p>hi there</p> <p>I m just starting using gwt and so far so good, however after reading some sample code I wonder is it necesary to have a high level of test coverage? (I can see that most code is declarative and then add some attributes I can see the sense in checking so me particular attributes are there but not all)</p> <p>Also i would be interested to know anything about what are the gotchas in TDDing with GWT</p> <p>I m using eclipse so also if you are really happy with some particualrs add ins for GWT I would be happy to hear about that Thanks for the input</p> <p>edit: maybe I m asking a very wide question, but even little pieces of information will help I come from having nvelocity views with jquery/extJs/prototype/scriptaculous and this is a bit different</p> http://stackoverflow.com/questions/1802206/advice-on-starting-to-mentor-coworkers 1 Advice on starting to mentor coworkers AndreasKnudsen 2009-11-26T08:06:30Z 2009-11-26T09:58:12Z <p>I work in a great company (.net consultancy) with some great devs, but some of the older hands have approached me wanting me to help them become "more modern" in their approach to software development. they would like to get more into</p> <ul> <li>Agile mindset</li> <li>TDD/BDD</li> <li>IOC/DI</li> </ul> <p>I'm absolutely no guru, but I do have strong opinions on these matters, so I guess that's why I was approached (that and the fact that I'm a helluva nice guy :) )</p> <p>What I'm wondering is how I should structure this so that they get the most value out of it. I guess me pointing at diagrams and demonstrating code won't be the best option.</p> <p>edit: to clarify I will probably not have the capacity to meet with them more than on a biweekly schedule for a couple of hours, so the structure will have to have some degree of "homework" element to it, I agree that in an ideal world, I would be able to work with them in pair programming on a relevant project, but they are stationed elsewhere and this will have to happen after opening hours.</p> http://stackoverflow.com/questions/642620/what-should-i-consider-when-choosing-a-mocking-framework-for-net 10 What should I consider when choosing a mocking framework for .Net Ian Ringrose 2009-03-13T13:11:13Z 2009-11-26T09:38:52Z <p>There are lots of mocking frameworks out there for .Net some of them have been superseded by others that are better in everyway. However that still leaves many mocking frameworks that have different <em>styles</em> of usage.</p> <p>The time it takes to learn all of them well enough to decide witch to use is unreasonable. I don’t believe that we have yet reached a stage that we can talk about <em>the best</em> mocking framework. So what questions should I by asking about the project and myself to help decide on the best mocking framework to use in a given case?</p> <p>It would also be useful to know why you choose the mocking framework you are currently using and if you are still happy with that choose.</p> <p>Is there yet a useful vocabulary to use when comparing the styles of mocking frameworks?</p> <p>(I have limited this question to .Net as Java does not have attributes or lambda expression, so I hope the mocking frameworks can be better for .Net then Jave)</p> <p><strong>Summary so far:</strong></p> <ul> <li>If you need to mock static method, or none virtual methods then the only reasonable option is <a href="http://typemock.com/" rel="nofollow">TypeMock</a>, however it is not free and does not drive you towards a good design.</li> <li><a href="http://ayende.com/projects/rhino-mocks.aspx" rel="nofollow">Rhino Mocks</a> is a very good option if you are doing TDD, .e.g the objects you wish to mock implement interfaces. At present it seems to be the "market leader"</li> <li><a href="http://code.google.com/p/moq/" rel="nofollow">Moq</a> (<a href="http://www.codethinked.com/post/2009/03/13/Beginning-Mocking-With-Moq-3-Part-1.aspx" rel="nofollow">introduction</a>) should be considered if you are using .NET 3.5 Moq <em>may</em> be againing on Rhino Mocks for new projects</li> </ul> <p>What have I missed from this summary?</p> <p><strong>So what drives the choose between <a href="http://ayende.com/projects/rhino-mocks.aspx" rel="nofollow">Rhino Mocks</a> and <a href="http://code.google.com/p/moq/" rel="nofollow">Moq</a>, if you are using .NET 3.5?</strong></p> <p><hr></p> <p>see also:</p> <ul> <li><a href="http://stackoverflow.com/questions/37359/what-c-mocking-framework-to-use">What c# mocking framework to use?</a> </li> <li><a href="http://stackoverflow.com/questions/690769/what-are-the-capabilities-of-moq-and-rhino-mocks">What are the capabilities of Moq and Rhino.mocks?</a></li> <li><a href="http://stackoverflow.com/questions/1718463/what-are-the-real-world-pros-and-cons-of-each-of-the-major-mocking-frameworks">What are the real-world pros and cons of each of the major mocking frameworks?</a></li> </ul> <p>“<a href="http://stackoverflow.com/questions/1267567/what-should-i-consider-when-choosing-a-dependency-injection-framework-for-net">What should I consider when choosing a dependency injection framework for .NET?</a>” may also be of interest as it asks the “other side” of the question.</p> http://stackoverflow.com/questions/1788436/why-using-integration-tests-instead-of-unit-tests-is-a-bad-idea 1 Why using Integration tests instead of unit tests is a bad idea? andrey-tsykunov 2009-11-24T07:26:25Z 2009-11-25T01:44:50Z <p>Let me start from definition:</p> <p><strong>Unit Test</strong> is a software verification and validation method in which a programmer tests if individual units of source code are fit for use</p> <p><strong>Integration testing</strong> is the activity of software testing in which individual software modules are combined and tested as a group.</p> <p>Although they serve different purposes very often these terms are mixed up. Developers refer to automated integration tests as unit tests. Also some argue which one is better which seems to me as a wrong question at all.</p> <p>I would like to ask development community to share their opinions on <em>why automated integration tests cannot replace classic unit tests</em>.</p> <p>Here are my own observations:</p> <ol> <li>Integration tests can not be used with TDD approach</li> <li>Integration tests are slow and can not be executed very often</li> <li>In most cases integration tests do not indicate the source of the problem</li> <li>it's more difficult to create test environment with integration tests</li> <li>it's more difficult to ensure high coverage (e.g. simulating special cases, unexpected failures etc)</li> <li>Integration tests can not be used with <a href="http://benpryor.com/blog/2007/01/16/state-based-vs-interaction-based-unit-testing/" rel="nofollow">Iteration based testing</a></li> <li><a href="http://stackoverflow.com/questions/1788436/why-using-integration-tests-instead-of-unit-tests-is-a-bad-idea/1788461#1788461">Integration tests move moment of discovering defect further</a> (from <a href="http://stackoverflow.com/users/14860/paxdiablo">paxdiablo</a>)</li> </ol> <p>EDIT: Just to clarify once again: the question is not about whether to use integration or unit testing and not about which one is more useful. Basically I want to collect arguments to the development teams which write ONLY integration tests and consider them as unit tests. Any test which involve components from different layers is considered as integration test. This is to compare to unit test where isolation is the main goal.</p> <p>Thank you, Andrey</p> http://stackoverflow.com/questions/1771363/in-your-experience-is-jspec-reliable 0 In your experience, Is JSpec reliable ? julien 2009-11-20T15:47:10Z 2009-11-24T18:27:13Z <p>I'm investigating Javascript BDD frameworks, and JSpec has a lot of appeal, especially as a Ruby developer.</p> <p>I'm wary about the DSL parsing stuff though, since that's a potential pitfall, and what's BDD worth if you can't rely on your tests ?</p> <p>As a JSpec user, have you run into any issues in this regard, and how is it working out for you in general?</p> http://stackoverflow.com/questions/1783922/how-to-unit-test-the-sorting-of-a-stdvector 1 How to unit test the sorting of a std::vector ThisSuitIsBlackNot 2009-11-23T15:38:19Z 2009-11-24T07:42:28Z <p>I have never used unit testing before, so I'm giving CxxTest a go. I wrote a test to check if a function correctly sorts a std::vector. First I made sure the test failed when the vector wasn't sorted, and then as a sanity check I tested whether std::sort worked (it did, of course). So far, so good.</p> <p>Then I started writing my own sorting function. However, I made a mistake and the function didn't sort correctly. Since my test didn't output the intermediate states of a vector as it was being sorted, it was difficult to tell where I had gone wrong in my sorting function. I ended up using <code>cout</code> statements (I could have used a debugger) to find my bug, and never used the unit test until after I knew my sort function worked.</p> <p>Am I doing something wrong here? I thought unit testing was as simple as</p> <blockquote> <p>1) Write test<br> 2) Write function<br> 3) Test function<br> 4) If test fails, revise function<br> 5) Repeat 3 and 4 until test passes</p> </blockquote> <p>The process I used was more like</p> <blockquote> <p>1) Write test<br> 2) Write function<br> 3) Test function<br> 4) If test fails, debug function until it works correctly<br> 5) Repeat 3 (even though function is already known to work)</p> </blockquote> <p>I feel like my process was not truly TDD, because the design of my sorting function was not <em>driven</em> by the test I wrote. Should I have written more tests, e.g. tests that check the intermediate states of a vector as it's being sorted? </p> http://stackoverflow.com/questions/1788342/test-driven-development-with-asp-net-mvc-where-to-begin 6 Test-driven development with ASP.NET MVC - where to begin? jonathanconway 2009-11-24T07:03:54Z 2009-11-24T07:23:23Z <p>I've read a lot about Test-Driven Development (TDD) and I find the principles very compelling, based on personal experience.</p> <p>At the moment I'm developing a web-site for a start-up project I'm involved in, and I'd like to try my hand at putting TDD into practice.</p> <p>So ... I create a blank solution in Visual Studio 2010, add an ASP.NET MVC Website project and a test project.</p> <p>I also add a class library called 'Domain', for my domain objects, and a test project for that.</p> <p>Now I'm wondering where to begin. I should be writing a test before I do anything right? The question is - should I start writing tests for domain objects? If so, what exactly should I be testing for, since the domain objects don't yet exist?</p> <p>Or should I be starting with the Website project and writing tests for that? If so, what should I write a test for? The Home controller / Index action?</p> http://stackoverflow.com/questions/511176/why-does-mstest-and-testdriven-net-behave-differently-using-this-code 1 Why does MSTest and TestDriven.NET behave differently using this code? kbe 2009-02-04T12:37:42Z 2009-11-24T07:00:12Z <p>Check out this code:</p> <pre><code>internal static readonly Dictionary&lt;Type, Func&lt;IModel&gt;&gt; typeToCreator = new Dictionary&lt;Type, Func&lt;IModel&gt;&gt;(); protected static object _lock; public virtual void Register&lt;T&gt;(Func&lt;IModel&gt; creator) { lock (_lock) { if (typeToCreator.ContainsKey(typeof(T))) typeToCreator[typeof(T)] = creator; else typeToCreator.Add(typeof(T), creator); } } </code></pre> <p>When I use run the code in this test (testframework is MSTest):</p> <pre><code>[TestMethod] public void Must_Be_BasePresenterType() { var sut = new ListTilbudPresenter(_tilbudView); Assert.IsInstanceOfType(sut, typeof(BasePresenter)); } </code></pre> <p>...MSTest passes it and TestDriven.NET fails it because _lock is null.</p> <p><b>Why does MSTest NOT fail the test???</b></p> http://stackoverflow.com/questions/641318/test-probabilistic-functions 5 Test Probabilistic Functions stimms 2009-03-13T02:59:00Z 2009-11-23T20:49:26Z <p>I need a function which returns an array in random order. I want to ensure that it is randomish but I have no idea how one would go about writing the tests to ensure that the array really is random. I can run the code a bunch of times and see if I have the same answer more than once. While collisions are unlikely for large arrays it is highly probable for small arrays (say two elements). </p> <p>How should I go about it? </p> http://stackoverflow.com/questions/1781144/remotely-track-the-current-branch-in-git 2 Remotely Track the Current Branch in Git Craig Walker 2009-11-23T04:47:30Z 2009-11-23T14:11:14Z <p>I'm moving my continuous testing to a dedicated server (autotest slows down my local laptop too much). What I'd like is for my testing server (which happens to be running CruiseControl.rb) to be continuously getting my latest (committed) changes via Git -- ideally, without any changes to my own workflow. I am the only developer working on this project.</p> <p>Prior to getting the testing server, I had:</p> <ul> <li>My laptop as my main development system</li> <li>Multiple branches in my local repository. </li> <li>A local working copy, pointing to one of the branches. I switch between branches frequently (usually for new features).</li> <li>A GitHub account, to which I frequently push local branches to mirrored remote branches. (This is mostly for use an offsite backup; I'm not sharing any code for my current project). I try to push to GitHub at least at the end of every workday, though I occasionally forget.</li> </ul> <p>I'd like to keep all of that intact. On top of that, I now have:</p> <ul> <li>The test server</li> <li>...running CruiseControl.rb</li> <li>A clone of my laptop repository on my test server. (Currently it's not cloning GitHub)</li> <li>A local working copy on the test server, from which CC is building/testing.</li> <li>This working copy points to one particular Git branch (of course)</li> </ul> <p>I've been trying to have my test server automatically get whatever branch I'm working on on my laptop working copy and build from that. (That would mimic autotest's continuous testing without eating up system resources).</p> <p>Things I've tried without success:</p> <ul> <li>git checkout origin/HEAD: this gets the files fine but breaks CruiseControl because it doesn't like the "branchless" working copy.</li> <li>git checkout --track -b a_branch origin/a_branch: this works fine for getting files, and CC likes it, but it sticks the testing server to a particular branch. When switching branches on the laptop I'll effectively stop testing my current work.</li> <li>git checkout --track -b my_testing_branch origin/HEAD: this also gets buildable files, but it suffers from the same problem as the command above. Creating a branch from origin/HEAD only gets the HEAD for the "default" branch, so it's also sticky.</li> </ul> <p>Is there any way I can get a good remote continuous testing system (with or without git branches) that doesn't involve major changes to my workflow?</p> http://stackoverflow.com/questions/1751500/are-scenarios-stories-the-new-interface-in-bdd-tdd 0 are scenarios/stories the new interface in BDD/TDD? koen 2009-11-17T20:21:33Z 2009-11-23T10:59:06Z <p>PHP is somewhat crippled since it doesn't have return types (yet). I need my code to throw an exception when X already exists. I can write this in a scenario, but I'm not able to go from the scenarios to the interface my class should implement.</p> <p>Actually this problem is the same in TDD I guess. There seems more that I can tell through my 'tests' than through my interfaces. Yet my interfaces define what components can interact, what responsibilities they should take.</p> <p>The problem is bigger in PHP because it doesn't have return types but it also exists in other languages because there is no contract that says an exception should be thrown when x is the case.</p> <p>How can I best deal with this?</p> http://stackoverflow.com/questions/1569132/has-anybody-used-unit-testing-as-a-way-to-learn-programming 4 Has anybody used Unit Testing as a way to learn programming? Brian Ball 2009-10-14T21:32:50Z 2009-11-22T22:02:52Z <p>I understand the concept of Unit Testing as coming up with simple ideas about what your code should output - then outputting it. So it's thinking about what you want a piece of code to do - then making a test to ensure it works.</p> <p>At which point in learning programming should TDD (unit testing) be incorporated?</p> <p>Edit: I liked the comment about unit testing as soon as the tools to do it stop becoming magical.</p> <p>Originally the question came about because I realize I don't have the skills yet to develop a large program, but would like to learn by coming up with ideas for what some piece of code could / should do.</p> <p>I'm wanting to get into learning by doing and I figure a structured way to do this would help. Python is the language I'm using. Thanks for all the input thus far.</p> http://stackoverflow.com/questions/1758444/silencing-factory-girl-logging 5 Silencing Factory Girl logging Sean McCleary 2009-11-18T19:27:37Z 2009-11-21T01:02:40Z <p>Just to clear the air, I am not some cruel factory master trying to silence working ladies. I am having a very annoying problem where when using Thoughtbot's factory girl in my specs, every time Factory.create(:foo) is used, the newly created ActiveRecord model instance is logged to the console. This makes looking at my console output more difficult to visually filter out all of the extra logging. Is there a setting somewhere or a flag that can be set that will silence this extra logging?</p> <p>Below is a small example of my rspec output. The '.' at the beginning of each line, in this case, is a successful test. </p> <pre><code>loading autotest/rspec /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby /Library/Ruby/Gems/1.8/gems/rspec-1.2.9/bin/spec --autospec spec/publisher_spec.rb -O spec/spec.opts #&lt;Event id: nil, oid: "mainEvent1", name: "Main Event", short_name: "mainevent", time_zone: "PST", created_at: nil, updated_at: nil, draft: true, draft_origin_id: nil, draft_deleted: false&gt; #&lt;Event id: nil, oid: "mainEvent1", name: "Main Event", short_name: "mainevent", time_zone: "PST", created_at: "2009-11-18 19:11:56", updated_at: "2009-11-18 19:11:56", draft: true, draft_origin_id: 3, draft_deleted: false&gt; #&lt;Event id: nil, oid: "bumbershoo", name: "Bumbershoot", short_name: "bumbershoot", time_zone: "PST", created_at: nil, updated_at: nil, draft: true, draft_origin_id: nil, draft_deleted: false&gt; #&lt;Notification id: nil, oid: "8P93CNEcl0", event_id: 3, name: "Penut Butter Jelly Time", url: nil, type: "Alert", priority: 10, last_displayed: "2009-11-16 19:11:54", format: nil, content: "IT'S PENUT BUTTER JELLY TIME. WHERE YOU AT? WHERE ...", image: nil, is_active: true, created_at: nil, updated_at: nil, updated_by: nil, image_file_name: nil, image_content_type: nil, image_file_size: nil, image_updated_at: nil, draft: true, draft_origin_id: nil, draft_deleted: false&gt; #&lt;Notification id: nil, oid: "8P93CNEcl0", event_id: 3, name: "Penut Butter Jelly Time", url: nil, type: "Alert", priority: 10, last_displayed: "2009-11-16 19:11:54", format: nil, content: "IT'S PENUT BUTTER JELLY TIME. WHERE YOU AT? WHERE ...", image: nil, is_active: true, created_at: "2009-11-18 19:11:57", updated_at: "2009-11-18 19:11:57", updated_by: nil, image_file_name: nil, image_content_type: nil, image_file_size: nil, image_updated_at: nil, draft: true, draft_origin_id: 3, draft_deleted: false&gt; .#&lt;Event id: nil, oid: "mainEvent1", name: "Main Event", short_name: "mainevent", time_zone: "PST", created_at: nil, updated_at: nil, draft: true, draft_origin_id: nil, draft_deleted: false&gt; #&lt;Event id: nil, oid: "bumbershoo", name: "Bumbershoot", short_name: "bumbershoot", time_zone: "PST", created_at: nil, updated_at: nil, draft: true, draft_origin_id: nil, draft_deleted: false&gt; .#&lt;Event id: nil, oid: "mainEvent1", name: "Main Event", short_name: "mainevent", time_zone: "PST", created_at: nil, updated_at: nil, draft: true, draft_origin_id: nil, draft_deleted: false&gt; .#&lt;Event id: nil, oid: "mainEvent1", name: "Main Event", short_name: "mainevent", time_zone: "PST", created_at: nil, updated_at: nil, draft: true, draft_origin_id: nil, draft_deleted: false&gt; .#&lt;Event id: nil, oid: "mainEvent1", name: "Main Event", short_name: "mainevent", time_zone: "PST", created_at: nil, updated_at: nil, draft: true, draft_origin_id: nil, draft_deleted: false&gt; </code></pre> <p>I have picked over my specs many times to see if I have a "puts foo.inspect" anywhere, and I do not. This happens for all of my rspec and cucumber tests using autotest and normally running tests individually.</p> <p>Here is my <a href="http://gist.github.com/238342" rel="nofollow">factories.rb</a> file that relates to the above output. Note: there is some minor fanciness happening in my factories.rb.</p> <p>[Update:2009-11-20] Just trying to keep this fresh, and see if someone else may have any ideas.</p> http://stackoverflow.com/questions/1633559/experiences-with-test-driven-development-tdd-for-logic-chip-design-in-verilog 6 Experiences with Test Driven Development (TDD) for logic (chip) design in Verilog or VHDL Brian Carlton 2009-10-27T20:47:51Z 2009-11-20T20:22:29Z <p>I have looked on the web and the discussions/examples appear to be for traditional software development. Since Verilog and VHDL (used for chip design, e.g. FPGAs and ASICs) are similar to software development C and C++ it would appear to make sense. However they have some differences being fundamentally parallel and requiring hardware to fully tests.</p> <p>What experiences, good and bad, have you had? Any links you can suggest on this specific application?</p> <p>Edits/clarifications: 10/28/09: I'm particularly asking about TDD. I'm familiar with doing test benches, including self-checking ones. I'm also aware that SystemVerilog has some particular features for test benches.</p> <p>10/28/09: The questions implied include 1) writing a test for any functionality, never using waveforms for simulation and 2) writing test/testbenches first.</p> <p>11/29/09: In <a href="http://www.infoq.com/news/2009/03/TDD-Improves-Quality" rel="nofollow">Empirical Studies Show Test Driven Development Improves Quality</a> they report for (software) TDD "The pre-release defect density of the four products, measured as defects per thousand lines of code, decreased between 40% and 90% relative to the projects that did not use TDD. The teams' management reported subjectively a 15–35% increase in initial development time for the teams using TDD, though the teams agreed that this was offset by reduced maintenance costs." The reduced bugs reduces risk for tape-out, at the expense of moderate schedule impact. <a href="http://www.agile-itea.org/public/deliverables/ITEA-AGILE-D2.7%5Fv1.0.pdf" rel="nofollow">This</a> also has some data.</p> <p>11/29/09: I'm mainly doing control and datapath code, not DSP code. For DSP, the typical solution involves a Matlab bit-accurate simulation.</p> http://stackoverflow.com/questions/1753007/help-with-tdd-approach-to-a-real-world-problem-linker 1 Help with TDD approach to a real world problem: linker SnakE 2009-11-18T01:18:17Z 2009-11-20T14:52:46Z <p>I'm trying to learn TDD. I've seen examples and discussions about how it's easy to TDD a coffee vending machine firmware from smallest possible functionality up. These examples are either primitive or very well thought-out, it's hard to tell right away. But here's a real world problem.</p> <p>Linker.</p> <p>A linker, at its simplest, reads one object file, does magic, and writes one executable file. I don't think I can simplify it further. I do believe the linker design may be evolved, but I have absolutely no idea where to start. Any ideas on how to approach this?</p> <p><hr></p> <p>Well, probably the whole linker is too big a problem for the first unit test. I can envision some rough structure beforehand. What a linker does is:</p> <ol> <li>Represents an object file as a collection of segments. Segments contain code, data, symbol definitions and references, debug information etc.</li> <li>Builds a reference graph and decides which segments to keep.</li> <li>Packs remaining segments into a contiguous address space according to some rules.</li> <li>Relocates references.</li> </ol> <p>My main problem is with bullet 1. 2, 3, and 4 basically take a regular data structure and convert it into a platform-dependent mess based on some configuration. I can design that, and the design looks feasible. But 1, it should pick a platform-dependent mess, in one of the several supported formats, and convert it into a regular structure.</p> <p>The task looks generic enough. It happens everywhere you need to support multiple input formats, be it image processing, document processing, you name it. Is it possible to TDD ? It seems like either test is too simple and I easily hack it to green, or it's a bit more complex and I need to implement the whole object/image/document format reader which is a lot of code. And there is no middle ground.</p> http://stackoverflow.com/questions/334854/ioc-interfaces-best-practices 0 IoC & Interfaces Best Practices n8wrl 2008-12-02T17:57:57Z 2009-11-20T07:00:06Z <p>I'm experimenting with IoC on my way to TDD by fiddling with an existing project. In a nutshell, my question is this: what are the best practices around IoC when public and non-public methods are of interest?</p> <p>There are two classes:</p> <pre><code>public abstract class ThisThingBase { public virtual void Method1() {} public virtual void Method2() {} public ThatThing GetThat() { return new ThatThing(this); } internal virtual void Method3() {} internal virtual void Method4() {} } public class Thathing { public ThatThing(ThisThingBase thing) { m_thing = thing; } ... } </code></pre> <p>ThatThing does some stuff using its ThisThingBase reference to call methods that are often overloaded by descendents of ThisThingBase.</p> <p>Method1 and Method2 are public. Method3 and Method4 are internal and only used by ThatThings.</p> <p>I would like to test ThatThing without ThisThing and vice-versa.</p> <p>Studying up on IoC my first thought was that I should define an IThing interface, implement it by ThisThingBase and pass it to the ThatThing constructor. IThing would be the public interface clients could call but it doesn't include Method3 or Method4 that ThatThing also needs.</p> <p>Should I define a 2nd interface - IThingInternal maybe - for those two methods and pass BOTH interfaces to ThatThing?</p> http://stackoverflow.com/questions/1766156/is-there-a-list-of-famous-software-products-that-do-and-do-not-do-testing 2 Is there a list of famous software products that do and do not do testing? Josh Ribakoff 2009-11-19T20:04:00Z 2009-11-19T21:12:30Z <p>I would be interested in looking at a list of projects that did and did not do unit testing, and other forms of regression testing, to see how those companies turned out.</p> <p>All test infected developers know it saves them time, but it would be interesting to what correlation there is between code quality/test coverage and business success. Something objective like:</p> <p>xyz corp, makes operating systems, didnt test, makes $50M 123 corp, makes operating systems, does test, makes $100M</p> <p>Does anyone know of any studies done?</p> http://stackoverflow.com/questions/1757373/which-unit-testing-framework-to-use-for-c-development-on-windows 1 Which unit testing framework to use for C development on Windows? Rob Kam 2009-11-18T16:45:24Z 2009-11-19T15:04:57Z <p>On Windows XP, using <a href="http://www.tdragon.net/recentgcc/" rel="nofollow">TDM's GCC/MinGW32</a> for basic development i.e. gcc 4.4.x with gdb. Which unit testing framework to use for test driven development?</p> <p>Apparently <a href="http://check.sourceforge.net/" rel="nofollow">Check</a>'s unit tests don't yet work on Windows.</p> <p>The questions at <a href="http://stackoverflow.com/questions/177251/unit-testing-frameworks-for-c">Unit Testing Frameworks for C</a> and <a href="http://stackoverflow.com/questions/65820/unit-testing-c-code">Unit Testing C Code</a> are similar but not specifically about using gcc 4.4.x on Windows.</p> http://stackoverflow.com/questions/1762633/nunit-test-function-which-uses-executable-path-to-open-a-file 0 nUnit Test function which uses executable path to open a file eastender 2009-11-19T11:22:05Z 2009-11-19T11:32:28Z <p>hi, I have a function which opens up the help file for the app. The function takes 3 arguments :</p> <blockquote> <p>ShowHelp(appPath, 1, @"heelp\help.doc")</p> </blockquote> <ul> <li>The first argument is the start path.</li> <li>The second argument is the no of levels up the start path. </li> <li>The third argument is the path of the help file after going up n levels from the start path.</li> </ul> <p>To test this I created a Resources folder in my test project, added a doc into this folder and supplied the below:</p> <blockquote> <p>controller.ShowHelp(Application.ExecutablePath, 1, @"Resources\h.doc");</p> </blockquote> <p>However when I run this thru test driven.net , my executable path is coming back as : </p> <blockquote> <p>"C:\Program Files\TestDriven.NET 2.0\ProcessInvocation.exe"</p> </blockquote> <ul> <li>How do I supply the path of my Test Project in the test?</li> <li>Is there any easier way to test this method?</li> </ul> <p>Thanks!</p> http://stackoverflow.com/questions/234458/does-polymorphism-or-conditionals-promote-better-design 8 Does polymorphism or conditionals promote better design? Nik Reiman 2008-10-24T17:19:46Z 2009-11-18T22:35:47Z <p>I recently stumbled across <a href="http://googletesting.blogspot.com/2008/08/by-miko-hevery-so-you-decided-to.html" rel="nofollow">this entry in the google testing blog</a> about guidelines for writing more testable code. I was in agreement with the author until this point:</p> <blockquote> <p>Favor polymorphism over conditionals: If you see a switch statement you should think polymorphisms. If you see the same if condition repeated in many places in your class you should again think polymorphism. Polymorphism will break your complex class into several smaller simpler classes which clearly define which pieces of the code are related and execute together. This helps testing since simpler/smaller class is easier to test.</p> </blockquote> <p>I simply cannot wrap my head around that. I can understand using polymorphism instead of RTTI (or DIY-RTTI, as the case may be), but that seems like such a broad statement that I can't imagine it actually being used effectively in production code. It seems to me, rather, that it would be easier to add additional test cases for methods which have switch statements, rather than breaking down the code into dozens of separate classes.</p> <p>Also, I was under the impression that polymorphism can lead to all sorts of other subtle bugs and design issues, so I'm curious to know if the tradeoff here would be worth it. Can someone explain to me exactly what is meant by this testing guideline?</p> http://stackoverflow.com/questions/1742323/tdd-vs-unit-testing 18 TDD vs. Unit testing Walter 2009-11-16T13:55:17Z 2009-11-17T18:18:44Z <p>My company is fairly new to unit testing our code. I've been reading about TDD and unit testing for some time and am convinced of their value. I've attempted to convince our team that TDD is worth the effort of learning and changing our mindsets on how we program but it is a struggle. Which brings me to my question(s).</p> <p>There are many in the TDD community who are very religious about writing the test then the code (and I'm with them), but for a team that is struggling with TDD does a compromise still bring added benefits? </p> <p>I can probably succeed in getting the team to write unit tests once the code is written (perhaps as a requirement for checking in code) and my assumption is that there is still value in writing those unit tests. </p> <p>What's the best way to bring a struggling team into TDD? And failing that is it still worth writing unit tests even if it is after the code is written?</p> <p><strong>EDIT</strong></p> <p>What I've taken away from this is that it is important for us to start unit testing, somewhere in the coding process. For those in the team who pickup the concept, start to move more towards TDD and testing first. Thanks for everyone's input.</p> http://stackoverflow.com/questions/1717801/does-tdd-really-stop-gold-plating 2 Does TDD really stop gold plating? Archu 2009-11-11T20:20:03Z 2009-11-17T18:14:22Z <p>Questions that I want answers for...</p> <p>1) Propose one or more mechanism, which could be used to extend TDD to estimate the level of <a href="http://en.wikipedia.org/wiki/Gold%5Fplating%5F%28analogy%29" rel="nofollow">gold plating</a> that exists in an arbitrary Java program.</p> <p>2) What estimations would your mechanism provide the quantity the level of gold plating?</p> <p>3) What evidence can you provide (if any) to justify or argue that your proposal is viable extension to TDD, which provides a meaningful quantification.</p> http://stackoverflow.com/questions/537014/using-tdd-to-drive-out-thread-safe-code 5 Using TDD to drive out thread-safe code Don Branson 2009-02-11T14:27:39Z 2009-11-17T04:52:04Z <p>What's a good way to leverage TDD to drive out thread-safe code? For example, say I have a factory method that utilizes lazy initialization to create only one instance of a class, and return it thereafter:</p> <pre><code>private TextLineEncoder textLineEncoder; ... public ProtocolEncoder getEncoder() throws Exception { if(textLineEncoder == null) textLineEncoder = new TextLineEncoder(); return textLineEncoder; } </code></pre> <p>Now, I want to write a test in good TDD fashion that forces me to make this code thread-safe. Specifically, when two threads call this method at the same time, I don't want to create two instances and discard one. This is easily done, but how can I write a test that makes me do it?</p> <p>I'm asking this in Java, but the answer should be more broadly applicable.</p> http://stackoverflow.com/questions/1742461/how-to-test-email-sending-using-rspec 1 How to test email sending using Rspec? marcgg 2009-11-16T14:21:41Z 2009-11-16T16:17:42Z <p>What are the best practices and tools to test email-sending using rspec with Rails? </p> <p>For instance, how do I test that an email has been sent or what should I test to have efficient testing and acceptable coverage.</p> <p>If you guys need an example, how would I go and test this:</p> <pre><code>class UserMailer &lt; ActionMailer::Base def jobdesc_has_been_reviewed(user, title) @body[:title] = title @body[:jobdesc] = jobdesc @body[:url] = "http://" + user.account.subdomain + "." + Constants::SITE_URL + "/jobdescs/#{jobdesc.id}" end end </code></pre> http://stackoverflow.com/questions/1299006/php-string-parameter-to-construct-not-passed-correctly 0 PHP: string parameter to __construct not passed correctly. gouwsmeister 2009-08-19T10:30:31Z 2009-11-16T10:00:03Z <p>Hi!</p> <p>I'm trying my hand at TDD with PHP and am writing a webbased app to access articles in a MySQL database; this is the test function:</p> <pre><code>class TestArticleTestCase extends UnitTestCase { ... public function testArticleGenerateInsertSqlString() { $testArticle = new Article("12345", "2009-09-13 20:20:20", "Test heading", "Test text"); ... } </code></pre> <p>and this is the Article class:</p> <pre><code>class Article { private $_articleId; private $_pubDate; private $_heading; private $_text; public function __construct($articleId, $pubDateUnchecked, $headingUnescaped, $textUnescaped) { echo "pubDateUnchecked == $pubDateUnchecked &lt;/BR&gt;"; ... } </code></pre> <p>I included the echo in the constructor because the dates in the database was not what I initialised the Article with, and sure enough, tracing the problem, this is the output of that echo in the constructor:</p> <p><em>pubDateUnchecked == 2005-06-01 12:00:00</em></p> <p>Maybe I've just stared at this code too long, but how can the string change from where I instantiate it to directly where it gets instantiated, BEFORE I start manipulating it as a date (I check that it's in am allowable date format with strtotime() and date() later on..).</p> <p>Does anyone have any ideas on where to look?</p> <p>Thank you, Stephan.</p> http://stackoverflow.com/questions/824668/integrate-silverlight-unit-testing-with-visual-studio-2008-test-results-panel 0 Integrate Silverlight Unit Testing with Visual Studio 2008 Test Results Panel? Ash 2009-05-05T12:33:33Z 2009-11-16T02:38:15Z <p>I would like to run my Silverlight Unit Tests from Visual Studio instead of opening a new instance of my Silverlight Test App in the browser.</p> <p>Apparently it is possible (<a href="http://www.jeff.wilcox.name/2008/09/rc0-new-test-features/" rel="nofollow">http://www.jeff.wilcox.name/2008/09/rc0-new-test-features/</a> - search for "Visual Studio Team Test log provider output")....but I don't understand how you enable this, does anyone know how?</p> <p>Would be great if these tests would run from the "Run All Tests in Solution" button (Ctrl+R, A).</p> <p>Thanks, Ash.</p> http://stackoverflow.com/questions/1736546/global-setup-and-teardown-blocks-in-testunit 1 Global setup and teardown blocks in Test::Unit samg 2009-11-15T04:16:55Z 2009-11-16T02:20:50Z <p>What's the best way to have a setup run before every method in an entire test suite (not just one test class)?</p> <p>Rspec allows you to define global before and after blocks. Is there a clean comparable way to do this in Test::Unit that doesn't involve mixing a module into each test class?</p> http://stackoverflow.com/questions/1501375/how-to-test-repository-pattern-with-ado-net-entity-framework 2 How to test Repository Pattern with ADO.NET Entity Framework? Geo 2009-10-01T00:45:36Z 2009-11-15T11:54:47Z <p>While using Repository pattern I find it difficult to understand the reason of designing the software with TDD technique while in reality you will have to implement the Interface for your repository in your persistence dataset.</p> <p>To make my point clear I will submit an example:</p> <p>I have the following Interface on my domain model:</p> <pre><code>public interface IUserRepository { IQueryable&lt;User&gt; FindAllUsers(); void AddUser(User newUser); User GetUserByID(int userID); void Update(User userToUpdate); } </code></pre> <p>I have the following implementation of the interface for testing purposes:</p> <pre><code>public class FakeUserRepository : IUserRepository { private IList&lt;User&gt; _repository; public FakeUserRepository() { _repository = new List&lt;User&gt;(); ... //create all users for testing purposes } public IQueryable&lt;User&gt; FindAllUsers() { return _repository.AsQueryable&lt;User&gt;(); //returns all users } </code></pre> <p>Now I create a few tests: </p> <ol> <li>Can_Add_User</li> <li>Can_Add_Account for a User</li> <li>Can_Add_ShareSpace for a an account of a user with another user.</li> </ol> <p>My question is, after I test all these with my FakeUserRepository implementation, I have to go back and implement the IUserRepository on my actual persistence dataset (i.g. SQL), and I have to implement again the code, so my unit testing is not actually checking the code that I am actually using on my application.</p> <p>Maybe I am missing something.</p> <p>Thanks as always!</p> <p>Below then my Persistent data access repository which is the one that is supposed to be under test (by my mind at least), but then I should not test hooked to the database: </p> <pre><code>public class SQLUserRepository : IUserRepository { private BusinessDomainModel.EntityModel.BusinessHelperAccountDBEntities _repository; public SQLUserRepository() { _repository = new BusinessHelperAccountDBEntities(); } #region IUserRepository Members public IQueryable&lt;User&gt; FindAllUsers() { return _repository.UserSet.AsQueryable(); } </code></pre>