active questions tagged unit-testing - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T02:14:11Z http://stackoverflow.com/feeds/tag/unit-testing http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/339516/how-can-i-implement-tdd-in-perl 12 How can I implement TDD in Perl? melaos 2008-12-04T03:15:25Z 2009-12-05T20:13:27Z <p>We're using <a href="http://en.wikipedia.org/wiki/Mod%5Fperl" rel="nofollow">mod_perl</a> to produce data in XML and later to be converted into HTML via XSLT, and the database is in MySQL. Our OS is Unix.</p> <p>So I've been reading about how cool and powerful <a href="http://en.wikipedia.org/wiki/Test-driven%5Fdevelopment" rel="nofollow">TDD</a> is in .NET, Java with all the available frameworks. I've even tested <a href="http://en.wikipedia.org/wiki/NUnit" rel="nofollow">NUnit</a> before and I kind of like it. You can write the test once and use it pretty much forever.</p> <p>I was wondering if there is an easy way to implement TDD for our case too with Perl?</p> <p>What I want to do is to have some automated way to manage my unit test, and to be able to easily run the unit test with just one click or something.</p> <h2>Edit</h2> <p>I've found this <a href="http://www.extremeperl.org/bk/test-driven-design" rel="nofollow">chapter on TDD</a> to be very useful as well as helping me design the test, and best of all it's free :)</p> <p>And if you can afford it then get this book too: <a href="http://rads.stackoverflow.com/amzn/click/0596100922" rel="nofollow">Perl Testing: a developer's notebook</a>. It's really good in the sense that it break down into all the potential stuff that we need to do and it's in a tutorial based format.</p> <p>Added a <a href="http://langworth.com/pub/perl%5Ftest%5Frefcard.pdf" rel="nofollow">Perl testing reference card</a> here.</p> <p>So now I'm eager to look for some good resources, .pm, open source Perl projects which I can use to better learn how to write unit tests, etc. Can anyone recommend some here?</p> http://stackoverflow.com/questions/502644/how-can-i-do-unit-testing-in-perl 12 How can I do unit testing in Perl? mandel 2009-02-02T09:15:21Z 2009-12-05T19:52:11Z <p>I have been doing some OO Perl programming and I was wondering: which is the best way to perform unit tests?</p> <p>So far I have been using the <a href="http://search.cpan.org/~mschwern/Test-Simple-0.94/lib/Test/Simple.pm" rel="nofollow">Test::Simple</a> module to perform tests, but it feels insufficient for what I want. </p> <p>Can you point me to some nice modules for that?</p> http://stackoverflow.com/questions/1850889/django-unit-testing-failures-related-to-authentication-settings 0 Django unit testing failures related to authentication settings chernevik 2009-12-05T02:18:28Z 2009-12-05T18:47:03Z <p>In Django, when I run "manage.py test", I get a lot of authentication related failures. Some examples:</p> <pre><code>FAIL: test_password_change_succeeds -- AssertionError 200 != 302 FAIL: Logout without next_page option renders the default template -- AssertionError 200 != 302 </code></pre> <p>And:</p> <pre><code>Failed example: form.non_field_errors() Expected: [u'This account is inactive.'] Got: [u'Please enter correct username and password....'] </code></pre> <p>I've configured settings.py so that Django will accept authentication from Apache2. In settings, <code>MIDDLEWARE_CLASSES</code> includes 'AuthenticationMiddleware' and 'RemoteUserMiddleware', and <code>AUTHENTICATION_BACKENDS</code> includes 'RemoteUserBackend'.</p> <p>How do I figure out the problem here?</p> <p><strong>UPDATE:</strong></p> <p>Please see <a href="http://stackoverflow.com/questions/1853051/django-tests-blocked-by-assertionerror-200-302-raised-by-login-calls">this question</a>, where I try to atomize the problem to get at one of the issues I'm seeing.</p> http://stackoverflow.com/questions/1853051/django-tests-blocked-by-assertionerror-200-302-raised-by-login-calls 0 Django tests blocked by AssertionError 200 != 302, raised by login() calls chernevik 2009-12-05T18:43:57Z 2009-12-05T18:43:57Z <p>When I run "manage.py test", I get many errors of this form:</p> <pre><code>FAIL: test_password_change_fails_with_invalid_old_password File &lt;stuff...&gt; File &lt;stuff...&gt;tests/views.py", line 136, in login AssertionError 200 != 302 </code></pre> <p>The last line is always a call on a login() method, though the class varies. So the tests aren't getting past this one issue.</p> <p>The error seems odd. I would guess that response 200 would be good news, but don't know Django's internals enough to say. I would also guess that the tests expect that the urls are set up so that these calls are redirected before getting a response, and that the urls they are actually meeting are handling the requests directly. I don't know what I would be doing in my settings.py file, or code, that would mess with any of that.</p> <p>What is expected of my code by the test so that it can get past this login() call?</p> http://stackoverflow.com/questions/159280/do-ocunit-and-ocmock-work-on-the-iphone-sdk 12 Do OCUnit and OCMock work on the iPhone SDK? pmlarocque 2008-10-01T19:22:46Z 2009-12-05T17:31:49Z <p>I simply could not make it work, and I am wondering if I am wasting my time, or if I am simply stupid!</p> <p>Sorry I don't have the exact error I have right now. But I just want to know if it work or not!</p> http://stackoverflow.com/questions/1458760/moq-ordered-setups-expectations 1 Moq - Ordered Setups (Expectations) David Kiff 2009-09-22T08:20:53Z 2009-12-05T17:06:37Z <p>Hi All,</p> <p>I am fairly new to Moq and cant work out how I am to order setups. I have the following code:</p> <pre><code>_orderRepository.Setup(r =&gt; r.Update(It.Is&lt;Order&gt;(a =&gt; ((int)a.OrderStatusReference.EntityKey.EntityKeyValues[0].Value) == 2))) .Throws(exception) .AtMost(5); </code></pre> <p>I want this to be executed 5 times (its retry logic, if the update fails). After the 5th time I want to setup and expect that it is successful (An exception is not thrown):</p> <pre><code>_orderRepository.Setup(r =&gt; r.Update(It.Is&lt;Order&gt;(a =&gt; ((int)a.OrderStatusReference.EntityKey.EntityKeyValues[0].Value) == 2))).AtMostOnce(); </code></pre> <p>Unfortinatly it continues to use the 1st code sample, and never successfully updates.</p> <p>If I were not using the Throws method, then I can use the Callback method, however its not available after a throw :(.</p> <p>If there a way or is this a limitation of Moq?</p> http://stackoverflow.com/questions/1110516/resharper-running-all-tests-when-only-a-single-one-is-selected 1 Resharper running all tests when only a single one is selected Brandon 2009-07-10T16:15:18Z 2009-12-05T12:00:08Z <p>I'm using Resharper 4.5 with Visual Studio 2008 and MBUnit testing, and there seems to be something odd with using ReSharpher to run the tests.</p> <p>On the side there are the icons beside the class each test method with the options Run and Debug. When I select Run it just shows me the results of the single test. However I noticed that the test was taking a considerably long time to run.</p> <p>When I ran Sql Server profiler and start stepping through the code, I realized that its not just running the selected test, but every single one in the class. Is there any reason it makes it look like its only running one unit test while actually running them all?</p> <p>Its getting to be a pain waiting for all integration tests to run when I only care about the reuslt of one, is there any way to change this?</p> http://stackoverflow.com/questions/105556/automatically-generating-sql-schema-from-xml 2 Automatically Generating SQL Schema from XML driscadam 2008-09-19T20:56:18Z 2009-12-05T11:05:56Z <p>We are attempting to use a SQL Server 2003 database for our test records and want a quick way to take NUnit and NAnt output and produce SQL schema and data. Is there a simple way to generate SQL Schema using the XSD file describing these XML documents?</p> http://stackoverflow.com/questions/1850559/how-do-i-use-xmlunit-to-compare-only-certain-parts-of-files 0 How do I use XMLUnit to compare only certain parts of files? djangofan 2009-12-05T00:27:12Z 2009-12-05T08:21:01Z <p>How do I use XMLUnit to compare 2 or more nodes (of the same name) in 2 different files?</p> <p>I have 2 XML files that look like this:</p> <pre><code>&lt;SearchResults&gt; &lt;result type="header"&gt; ...ignore this.... &lt;/result&gt; &lt;result type="secondheader"&gt;...ignore this....&lt;/result&gt; &lt;result&gt;....data1....&lt;/result&gt; &lt;result&gt;....data2....&lt;/result&gt; &lt;result&gt;....data3....&lt;/result&gt; &lt;result type="footer"&gt;...ignore this....&lt;/result&gt; &lt;/SearchResults&gt; </code></pre> <p>And here is my method that I use to compare so far. The problem is that I do not want to compare the parts of the xml that have a result tag with any kind of attribute flag on them. How can I do this?</p> <pre><code>public void compareXMLEqualityToLastTest() throws Exception { System.out.println("Checking differences."); File firstFile = new File("C:\\Eclipse\\workspace\\Tests\\log\\" + "Test_2.xml"); String file1sub = readXMLFromFile(firstFile); File secondFile= new File("C:\\Eclipse\\workspace\\Tests\\log\\" + "Test_1.xml"); String file2sub = readXMLFromFile(secondFile); assertXMLNotEqual("files are equal", file1sub, file2sub ); assertXMLEqual("files are not equal", file1sub, file2sub ); } </code></pre> <p>I found a vague suggestion to use a ElementQualifier on page 5 of the XMLUnit manual, but I don't understand it yet. I wouldn't know how to tell it which nodes to compare.</p> <pre><code>Diff myDiff = new Diff(file1sub, file2sub); myDiff.overrideElementQualifier(new ElementNameAndTextQualifier()); assertXMLEqual("But they are equal when an ElementQualifier controls " + "which test element is compared with each control element", myDiff, true); </code></pre> <p>Should I follow that route and add this class to my project?</p> <pre><code>org.apache.wink.test.diff.DiffWithAttributeQualifier </code></pre> <p>The thought crossed my mind to put the nodes into a NodeList and then use <em>org.custommonkey.xmlunit.compareNodeList</em> but that feels like that is a hack. Is there a better way than that?</p> http://stackoverflow.com/questions/720368/c-noob-triggering-event-in-mocked-interface-class-how-does-this-code-work 0 C# Noob - Triggering event in mocked interface class - How does this code work? Joe Schneider 2009-04-06T05:45:28Z 2009-12-05T07:00:03Z <p>I'm a little confused at what's going on here. I'm looking at the Puzzle example from Atomic Object showing how to test a Model-View-Presenter pattern <a href="http://www.atomicobject.com/files/Puzzle.zip" rel="nofollow">Puzzle.zip</a> </p> <p>The View has a private event. The view also has a Subscribe(delegate) function that adds the delegate to the event. The Presenter is passed in an IView and an IModel. During construction, it subscribes to the view and hooks it up to a function on the model.</p> <p>For unit testing the Presenter, the View class is mocked using NMock. So it is just a dumb class, and the Subscribe() function doesn't actually do anything. Of course, to test the presenter, you have to mock up the view and model, then trigger the event in the view and ensure the model function was called. The example code works just fine - however, I don't understand how it works!!</p> <p>Some excerpts:</p> <pre><code> private DynamicMock modelMock; private IPuzzleModel model; private DynamicMock viewMock; private IPuzzleView view; private SavedTypeOf moveRequestConstraint; [SetUp] public void SetUp() { modelMock = new DynamicMock(typeof(IPuzzleModel)); modelMock.Strict = true; model = modelMock.MockInstance as IPuzzleModel; // Setup the view viewMock = new DynamicMock(typeof(IPuzzleView)); viewMock.Strict = true; view = viewMock.MockInstance as IPuzzleView; moveRequestConstraint = new SavedTypeOf(typeof(PointDelegate)); viewMock.Expect("SubscribeMoveRequest", moveRequestConstraint); // create the presenter new PuzzlePresenter(model, view); } [Test] public void test_MoveRequest_fromView() { Point point = new Point(1, 2); modelMock.Expect("MoveRequest", point); PointDelegate trigger = moveRequestConstraint.GetInstance as PointDelegate; trigger(point); } </code></pre> <p>Somehow, the "trigger(point)" call is actually connected to the view, and is causing the private event in the view to trigger. I can't figure out how this is working - I don't see where it is connected to the view instance. What am I missing?</p> <p><strong>Update:</strong> I am trying to use NMock 2. It appears that the moveRequestConstraint variable receives the value that is passed into SubscribeMoveRequest() in the TestSetup function. However, that is NMock 1 syntax - and NMock 2 does not appear to support that syntax. How would I do it with NMock 2?</p> http://stackoverflow.com/questions/1443570/gwt-mockito-integration 0 GWT Mockito integration Eugen 2009-09-18T09:59:17Z 2009-12-05T06:08:05Z <p>I'm trying to set up and use Mockito into a GWT project, and I'm having trouble using it on the client side (in javascript). I tried to add a module and include Mockito, but it seems not to work (lots of errors). I also tried to do a full checkout from svn and integrate GWT in it that way, the same errors. How should this be done? Thanks. </p> http://stackoverflow.com/questions/1837382/how-to-invoke-document-readyfunction-in-unit-testing 0 How to invoke $(document).ready(function() {}) in unit testing BeraCim 2009-12-03T03:09:18Z 2009-12-05T05:28:18Z <p>Hi all:</p> <p>I'm experiencing difficulties trying to invoke document.ready( function() {}) in my unit tests. Suppose I have multiple of them in my javascript file, and one of them called inside a named function i.e. </p> <pre><code>function myFunction() { $(document).ready(function() { //... }); } </code></pre> <p>How do I actually invoke them in my unit tests so I can actually test them? I'm using JsTestDriver to unit test my javascripts.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1850418/rhino-mocks-expectation-not-returning-collection-correctly 0 Rhino Mocks expectation not returning collection correctly jimioh 2009-12-04T23:46:08Z 2009-12-05T00:18:48Z <p>I am new to Rhino Mocks, and using mock isolation frameworks in general for unit testing. I have written the following test, where I have set up an expectation for a mock IDataProvider object to return a collection of objects. The collection supplied has one object in it.</p> <p>When I run the test, the call to the IDataProvider returns a empty list when it should return the list with one object in it.</p> <p>Any ideas whats going wrong?</p> <p>Here is my test: (Please excuse any bad practises here... feel free to mention any. Im trying to learn! Thanks)</p> <pre><code>[TestMethod()] public void FetchDataSeries_NeedsUpdate_SuccessfulDataSeriesRetrievedFromDataProvider() { List&lt;IDataSeries&gt; dataSeries = new List&lt;IDataSeries&gt;(); dataSeries.Add(new DataSeries("test")); DrillDownLevel level = DrillDownLevel.YEAR; int? year = 2008; var dataProvider = _MockRepository.CreateMock&lt;IDataProvider&gt;(); dataProvider.Expect(dp =&gt; dp.GetDataSeries(String.Empty, level, year, null ,null, null)).Return(dataSeries); _DataSourceContext.DataProvider = dataProvider; CollectionAssert.AreEqual(dataSeries, _DataSourceContext.FetchDataSeries(level, year, null, null, null)); dataProvider.VerifyAllExpectations(); } </code></pre> <p>Relevant portion of method under test: (The DataProvider.GetDataSeries call returns empty list... this should return stubbed list.)</p> <pre><code> public override List&lt;IDataSeries&gt; FetchDataSeries(DrillDownLevel? drillDownLevel, int? year, int? month, DateTime? week, int? day) { List&lt;IDataSeries&gt; dataSeries = new List&lt;IDataSeries&gt;(); // Cache data for maximum cache period // if data has been cached for longer than the maxium cache period OR the updateInterval has elapsed UNLESS LastUpdateAttempt was less than minimum update interval if (NeedsUpdate(LastUpdate, LastUpdateAttempt)) { // Attempt to get new data LoggingService.InfoFormat("DataSourceContext: {0}: Attempting to get new data:", Name); dataSeries = DataProvider.GetDataSeries(DataQuery, drillDownLevel, year, month, week, day); } return dataSeries; } </code></pre> http://stackoverflow.com/questions/1183049/little-endian-hex-in-ghkit-diagnostic-why 2 Little-endian hex in GHKit diagnostic, why? rudifa 2009-07-25T21:01:09Z 2009-12-04T22:36:07Z <p>In the context of iPhone programming, I am using the GHKit for unit testing (gabriel / gh-unit on github).</p> <p>Here is a failing test assertion :</p> <pre><code>GHAssertEquals(150, 15, @"someLimit"); </code></pre> <p>and here is the diagnostic from GHKit (shows up in the Simulator and in the Xcode Console) :</p> <pre><code> 2009-07-25 22:41:12.553 UnitTests[38404:3f07] Exception: '&lt;96000000&gt;' should be equal to '&lt;0f000000&gt;' +/-'(null)'. someLimit </code></pre> <p>Manifestly, GHKit displays the offending values in little-endian hex. </p> <p>OK, I can convert to integer values, but why so? Is this a feature or a bug?</p> http://stackoverflow.com/questions/1848776/how-can-i-exclude-a-package-from-the-clover-coverage-report-running-from-maven 0 How can I exclude a package from the clover coverage report (running from Maven)? Jared 2009-12-04T18:24:18Z 2009-12-04T22:16:52Z <p>I'm generating clover coverage reports (using Clover's maven plugin), and I'd like to exclude a certain package from the coverage reports (specifically, because it's UI code that intentionally isn't covered by my unit tests, but the reason doesn't really matter.)</p> <p>I can see how to exclude that package from being instrumented (using in the plugin configuration), but I can't see how to exclude it from the report. The intended solution appears to be to use a Context; however, there is no package-level context available (only block, method, and statement.)</p> http://stackoverflow.com/questions/1849802/how-to-unit-test-my-models-now-that-i-am-using-core-data 0 How to unit test my models now that I am using Core Data? Tony Eichelberger 2009-12-04T21:37:48Z 2009-12-04T22:16:22Z <p>I have been developing an iphone application using a domain model, and have put off the persistence aspect of the app until now. Core Data looks like a really good solution since I already have a well defined model but I am running into a snag with my existing unit tests.</p> <p>Here is simple example of what I have now:</p> <pre><code>- (void)test_full_name_returns_correct_string { Patient *patient = [[Patient alloc] init]; patient.firstName = @"charlie"; patient.lastName = @"chaplin"; STAssertTrue([[patient fullName] isEqualToString:@"charlie chaplin"], @"should have matched full name"); } </code></pre> <p>How can I make this work once my Patient object extends from NSManagedObject and uses @dynamic for the firstName and lastName properties?</p> <p>Has anyone else run into this type of this with Core Data? Thanks.</p> http://stackoverflow.com/questions/1849311/how-should-i-organize-python-source-code 11 How should I organize Python source code? Andres Jaan Tack 2009-12-04T20:00:52Z 2009-12-04T20:22:52Z <p>I'm getting started with Python (it's high time I give it a shot), and I'm looking for some best practices.</p> <p>My first project is a queue which runs command-line experiments in multiple threads. I'm starting to get a very long <code>main.py</code> file, and I'd like to break it up. In general, I'm looking for: <strong>How do python programmers organize multiple source files?</strong> Is there a particular structure that works for you?</p> <p>My specific questions include:</p> <ol> <li>Should each class be in a separate file?</li> <li>How should I organize unit tests relative to source code?</li> <li>Where should I put doc comments, specifically those for command-line operation?</li> <li>If I use multiple directories, how do I import classes between them?</li> </ol> <p>I can probably draw some of my own conclusions here by trial and error, but I'd rather start from something <em>good</em>.</p> http://stackoverflow.com/questions/1848266/need-ideas-for-a-tdd-approach 2 Need ideas for a TDD Approach joshlrogers 2009-12-04T16:53:50Z 2009-12-04T19:56:46Z <p>We have just released a re-written(for the 3rd time) module for our proprietary system. This module, which we call the Load Manager, is by far the most complicated of all the modules in our system to date. We are trying to get a comprehensive test suite because every time we make any kind of significant change to this module there is hell to pay for weeks in sorting out bugs and quirks. However, developing a test suite has proven to be quite difficult so we are looking for ideas.</p> <p>The Load Manager's guts reside in a class called LoadManagerHandler, this is essentially all of the logic behind the module. This handler calls upon multiple controllers to do the CRUD methods in the database. These controllers are essentially the top layer of the DAL that sits on top and abstracts away our LLBLGen generated code.</p> <p>So it is easy enough to mock these controllers, which we are doing using the Moq framework. However the problem comes in the complexity of the Load Manager and the issues that we receive aren't in dealing with the simple cases but the cases where there is a substantial amount of data contained within the handler.</p> <p>To briefly explain the load manager contains a number of "unloaded" details, sometimes in the hundreds, that are then dropped into user created loads and reship pools. During the process of creating and populating these loads there is a multitude of deletes, changes, and additions that eventually cause issues to appear. However, because when you mock a method of an object the last mock wins, ie:</p> <pre><code>jobDetailControllerMock.Setup(mock =&gt; mock.GetById(1)).Returns(jobDetail1); jobDetailControllerMock.Setup(mock =&gt; mock.GetById(2)).Returns(jobDetail2); jobDetailControllerMock.Setup(mock =&gt; mock.GetById(3)).Returns(jobDetail3); </code></pre> <p>No matter what I send to jobDetailController.GetById(x) I will always get back jobDetail3. This makes testing almost impossible because we have to make sure that when changes are made all points are affected that should be affected. </p> <p>So, I resolved to using the test database and just allowing the reads and writes to occur as normal. However, because you can't(read: should not) dictate the order of your tests, tests that are run earlier could cause tests that run later to fail. </p> <p>TL/DR: I am essentially looking for testing strategies for data oriented code that is quite complex in nature.</p> http://stackoverflow.com/questions/1848660/how-do-you-write-unit-tests-for-your-java-servlets 3 How do you write unit tests for your java servlets? Kico Lobo 2009-12-04T18:05:52Z 2009-12-04T19:05:34Z <p>Hi,</p> <p>what are the best practices to unit test java servlets? By the way: this is a topic in which I have some dificulty: how do you unit test your java servlets?</p> http://stackoverflow.com/questions/1843829/parameter-unexpectedly-initialized-when-invoked-from-unit-test 0 Parameter unexpectedly initialized when invoked from unit test Ben Aston 2009-12-03T23:27:47Z 2009-12-04T18:29:28Z <p>I have a unit test invoking a constructor, passing in a "null" on purpose to test the handling of the null.</p> <p>I expect the method invoked to throw an ArgumentNullException, but when I step through the code, I see the parameter has actually been initialised.</p> <p>This has me stumped, although my gut says it has something to do with the DI container (Castle Windsor).</p> <p>Can anyone shed any light on this?</p> <p>My unit test, a null is passed together with an instantiated delegate:</p> <pre><code> [Test] public void ConstructorThrowsAnExceptionWhenImplementationCollectionIsNull() { //assert Assert.Throws&lt;ArgumentException&gt;(() =&gt; new CacheImplementationSelector(null, _stubCacheImplementationSelectorDelegate)); } </code></pre> <p>The invoked method:</p> <pre><code>public CacheImplementationSelector(ICollection&lt;ICacheImplementation&gt; implementations, CacheImplementationSelectorDelegate selectorDelegate) { implementations.IsNotNullArgCheck("implementations"); ... </code></pre> <p>Hovering my mouse over the implementations parameter with the code stopped on a breakpoint in the CacheImplementationSelectorMethod, visual studio tells me the parameter "implementations" has a Count of 1 and [0] is null.</p> <p>I am using ReSharper to run the NUnit test.</p> <p>For completeness the TestFixtureSetup and SetUp are as follows:</p> <pre><code>[TestFixtureSetUp] public void FixtureSetUp() { _mocks = new MockRepository(); } [SetUp] public void Setup() { _listOfImplementations = new List&lt;ICacheImplementation&gt;() { _stubICacheImplementation }; _stubCacheImplementationSelectorDelegate = MockRepository.GenerateStub&lt;CacheImplementationSelectorDelegate&gt;(); _stubICacheImplementation = MockRepository.GenerateStub&lt;ICacheImplementation&gt;(); _stubKeyCreator = MockRepository.GenerateStub&lt;ICacheKeyCreator&gt;(); _stubStrategy = MockRepository.GenerateStub&lt;ICachingStrategy&gt;(); _stubEncoder = MockRepository.GenerateStub&lt;ICacheItemEncoder&gt;(); _c = new CacheImplementationSelector(_listOfImplementations, _stubCacheImplementationSelectorDelegate); _testObject = new object(); _yesterday = DateTime.Now.Subtract(new TimeSpan(1, 0, 0, 0)); _tomorrow = DateTime.Now.Add(new TimeSpan(1, 0, 0, 0)); _testString = "test"; _tooLongKey = "a".Repeat(Cache.MaxKeyLength+1); _tooLongFriendlyName = "a".Repeat(Cache.MaxFriendlyNameLength + 1); } </code></pre> http://stackoverflow.com/questions/1847004/eunit-timeout-doesnt-work 0 Eunit timeout doesn't work TP 2009-12-04T13:39:01Z 2009-12-04T17:46:12Z <p>Hi, I am trying to run all unit tests using eunit inside a folder but it seems like timeout always reset to 5 seconds.</p> <p>e.g.</p> <p>Module:</p> <pre><code>-module(example). -include_lib("eunit/include/eunit.hrl"). main_test() -&gt; % sleep for 10 seconds ?assertEqual(true, begin timer:sleep(10000), true end). </code></pre> <p>Command line:</p> <pre><code>Eshell V5.7.3 (abort with ^G) 1&gt; c(example). {ok,example} 2&gt; eunit:test({timeout, 15, example}). Test passed. ok 3&gt; eunit:test({timeout, 15, {dir, "."}}). example: main_test (module 'example')...*timed out* undefined ======================================================= Failed: 0. Skipped: 0. Passed: 0. One or more tests were cancelled. error </code></pre> <p>As you can see, running {timeout, 15, example} works but not {timeout, 15, {dir, "."}}. Dose anyone have a clue?</p> http://stackoverflow.com/questions/971376/jsf-unit-testing 3 JSF unit testing Zack 2009-06-09T17:16:01Z 2009-12-04T12:48:56Z <p>I'm trying to find a practical unit testing framework for JSF. </p> <p>I know about JSFUnit, but this is very impractical to me. I need to include about 10 JARs to my project, and jump through many other hoops just to get it running.</p> <p>I realize that -- due to the need to simulate a platform and a client -- unit testing web applications is difficult. But is there a better way?</p> http://stackoverflow.com/questions/602138/is-a-debugger-the-mother-of-all-evil 70 Is a debugger the mother of all evil? Ran 2009-03-02T12:26:44Z 2009-12-04T12:16:23Z <p>Some say that a debugger is the mother of all evil. What do you think of this approach?</p> <p>I have a friend at work, a colleague, who's completely against using a debugger whatsoever.</p> <p>I asked him: So, you just write code without bugs? Is that it?</p> <p>He answers: Of course not. Everyone makes mistakes, the difference is how you deal with them <strong>effectively</strong>, how you make sure not to make the same mistake again. When using a debugger, you may find your way to <strong>that</strong> bug, and you may fix it for the specific scenario you've witnessed, but - a) you're wasting your time b/c all that time put into debugging can never be reused, it's a one time hack in the sense that if you have another bug later, you'll probably need to start all over again and b) you've only solved this one bug, and might be that for only this specific scenario that you tested, but you most likely did not solve a more general problem. That's b/c you're not thinking in generality, you're in a debugging mindset, not a general mindset.</p> <p>Me: OK, fine, you don't use a debugger, you think it's a waste of time. What do you do when you find a bug then?</p> <p>Him: When I find a bug here's what I do:</p> <ol> <li>Read my code. Understand it. <strong>Document</strong> it.</li> <li>If a class or a method or a function is not coherent <strong>refactor</strong> it until it is. </li> <li>Add <strong>asserts</strong>. Use preconditions, post-conditions etc. Asserts are very effective.</li> <li>Add <strong>logging</strong>. When the program runs it should tell its user what it's doing, like you're reading a book. Don't assume the user understands the code, don't assume <em>you</em> understand the code. Let the program tell you exactly what it's doing, you will not regret it.</li> <li><strong>Unit-Testing</strong>. Except for the most trivial getters and setters, you need to test everything. Most bugs can be found while unit-testing, or while writing the tests.</li> <li><strong>Code review</strong>. Have someone else look at your code. When he/she asks you questions you'll understand your code better. Many times I found bugs when trying to explain what my code is doing to a reviewer.</li> </ol> <p>Me: OK, dude, that's a lot of things. Are you sure this is the best use of your time?</p> <p>Him: True, if you have a single bug at 8pm after a long day, and all you want to do is fix it and go home, you might get tempted to open a debugger and get rid of that thing already, right? </p> <p>Me: yeah...</p> <p>Him: Well, I think that this is when good developers show. A good developer needs to be self disciplined and realize that: every minute you waste on a debugger is a wasted minute. You'll never get your time back. While if you invest your time smartly in documentation, refactoring, asserting, logging, unit-testing and code reviews you're investing in a brighter future. It might be that this evening you'll get back home late and that is indeed sad, but I also guarantee you that you are not going to regret this and in the next couple of days not only that your coworkers think highly of you, but also you'll have much more free time since at this evening you solved not only one bug, but also a design issue and five other bugs.</p> <p>Me: OK, that's a bit extreme for me. I can see why you're saying that using a debugger is a very short-term investment and that professionals should make long term investments, that's cool. But, isn't it a bit too extreme? I mean is there any good time to use a debugger at all? What about, for example when you inherit the code and you don't even know how it's supposed to run?</p> <p>Him: Dude, in my team I'd not want to have you. If you want to read new code, print it and take it somewhere quiet. A debugger is not a Kindle. </p> <p>So, stackoverflowers, what do you think of this approach? Is a debugger the mother of all evil?</p> http://stackoverflow.com/questions/1831747/is-there-a-better-way-to-implment-equals-for-object-with-lots-of-fields 2 Is there a better way to implment Equals for object with lots of fields? Ian Ringrose 2009-12-02T09:33:09Z 2009-12-04T11:26:23Z <blockquote> <p>see also <a href="http://stackoverflow.com/questions/986572/hows-to-quick-check-if-data-transfer-two-objects-have-equal-properties-in-c">Hows to quick check if data transfer two objects have equal properties in C#?</a></p> </blockquote> <p>I have lot of Data Transfer Objects (DTO) that each contains <strong>lots of simple fields</strong>. I need to implement Equals on all of them (so I can write some unit tests off transporting them var WCF).</p> <p>The code I am using is:</p> <pre><code>public override bool Equals(object rhs) { RequestArguments other = rhs as RequestArguments; return other != null &amp;&amp; other.m_RequestId.Equals(RequestId) &amp;&amp; other.m_Type.Equals(m_Type) &amp;&amp; other.m_Parameters.Equals(m_Parameters) &amp;&amp; other.m_user.Equals(m_user); } </code></pre> <p><strong>There must be a better way!...</strong> <em>(listing all the fields is rather asking for errors and maintenance problems)</em></p> <p>E.g. we have Object. MemberwiseClone() to help with the Cloning() case, but I cannot find anything to help with Equals. We are running in full trust so a reflection based solution is one answer, but I rather not reinvent the wheel. </p> <p>(Sorry we don’t generate the DTO from a domain-specific language otherwise this sort of thing would be easy! Also I am not able to change the build system to add another step)</p> http://stackoverflow.com/questions/190292/phpunit-unit-testing-with-items-that-need-to-send-headers 2 PHPUnit - Unit Testing with items that need to send headers Mez 2008-10-10T06:01:46Z 2009-12-04T09:53:37Z <p>I'm currently working with PHPUnit to try and develop tests alongside what I'm writing, however, I'm currently working on writing the Session Manager, and am having issues doing so...</p> <p>The constructor for the Session handling class is</p> <pre><code>private function __construct() { if (!headers_sent()) { session_start(); self::$session_id = session_id(); } } </code></pre> <p>However, as PHPUnit sends out text before it starts the testing, any testing on this Object returns a failed test, as the HTTP "Headers" have been sent...</p> http://stackoverflow.com/questions/1843370/when-to-use-state-vs-behavior-verification 2 When to use State vs Behavior Verification Kenneth Cochran 2009-12-03T22:18:27Z 2009-12-04T09:45:24Z <p>In some cases its obvious when one or the other is warranted in other cases its not so clear. Take the following examples:</p> <ol> <li>A method which takes two inputs, performs a calculation and returns the result.</li> <li>A method which calls a factory object's Create method, passes the newly created object to the Add method of a collection object and returns void.</li> <li>A method which calls a collection's retrieval method and returns the retrieved object.</li> </ol> <p>Now example 1 is pretty straightforward:</p> <pre><code>public int Calc(int int1, int int2) { return int1 + int2 / int1 - int2 * int1; ) </code></pre> <p>There is no interaction with other objects so this clearly calls for state-based verification.</p> <pre><code>void CalcMethodShouldDoItsThing() { int expected = 1; Calculator sut = new Calculator(); int actual = sut.Calc(1,2); Assert.IsEqual(expected, actual); } </code></pre> <p>Example 2 clearly causes state to change but its inaccessible without using behavior verification to observe the change.</p> <pre><code>void NewObject() { _objectCollection.Add(_objectFactory.Create()); } void NewObjectShouldCreateObjectAndAddItToCollection() { IObjectFactory mockFactory = _mockery.NewMock&lt;IObjectFactory&gt;(); IObjectionCollection mockCollection = _mockery.NewMock&lt;IObjectionCollection&gt;(); // Mock expections for your mock framework of choice Objector sut = new Objector(mockFactory, mockCollection); sut.NewObject(); _mockery.Verify(); } </code></pre> <p>Example 3 is a little more tricky. It returns a value it retrieved from another object so its not clear which verification technique is more appropriate.</p> <pre><code>myObject GetIt(int objectId) { return _objectCollection.Retrieve(objectId); } </code></pre> <p>All three of these examples are contrived but they serve to illustrate my question. The fact that example 2's test has the word "And" in it indicates its may be doing to much even though it is a single line of code. Example 3 is simple delegation of responsibility so some may argue it doesn't need to be tested at all but it was purposefully kept simple for this question. There are far more complex examples that would have illustrated the same point.</p> <p>Before anyone bothers to suggest them... yes, I've read Fowler's <a href="http://martinfowler.com/articles/mocksArentStubs.html" rel="nofollow">essay</a> on mockist vs. classist and Gerard Mesaros' excellent <em>xUnit Test Patterns</em>. Both author's voice their own personal preferences and present both sides of the coin but neither delves very deeply into what to do when the choice isn't so obvious.</p> http://stackoverflow.com/questions/1845711/the-underlying-connection-was-closed-an-unexpected-error-occurred-on-a-send-ch 0 The underlying connection was closed: An unexpected error occurred on a send.. Check that the Web server is still running and visible on the network. Nimesh 2009-12-04T08:54:22Z 2009-12-04T08:54:22Z <p>I am getting this error when i run my ms unit test cases in the solution. If i run all the individual test cases its working and i am able to run the test cases. is there any fix for this? Am i missing something?</p> http://stackoverflow.com/questions/284774/can-we-use-junit-for-automated-integration-testing 7 Can we use JUNIT for Automated Integration Testing? Eduardo Santa 2008-11-12T18:03:33Z 2009-12-04T04:39:33Z <p>How do you automate <a href="http://en.wikipedia.org/wiki/Integration_testing" rel="nofollow">integration testing</a>? I use JUnit for some of these tests. This is one of the solutions or is totally wrong? What do you suggest?</p> http://stackoverflow.com/questions/3150/how-to-set-up-unit-testing-for-visual-studio-c 13 How to set up unit testing for Visual Studio C++ Hazar 2008-08-06T07:57:50Z 2009-12-04T03:57:32Z <p>I'm having trouble figuring out how to get the testing framework set up and usable in Visual Studio 2008 for C++ presumably with the built-in unit testing suite.</p> <p>Any links or tutorials would be appreciated.</p> http://stackoverflow.com/questions/1844625/jstestdriver-setup-and-teardown 0 Jstestdriver setup and teardown BeraCim 2009-12-04T03:18:41Z 2009-12-04T03:45:53Z <p>Hi all:</p> <p>Does anyone know the syntax for setUp and tearDown functions/methods for JsTestdriver? On their website they claim to be able to define it, but I can't get it right.</p> <p>Thanks.</p>