User Bradley Harris - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T11:27:54Z http://stackoverflow.com/feeds/user/10503 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/91826/fitnesse-for-delphi-2006-delphi-2007-delphi-2009/91907#91907 3 Answer by Bradley Harris for Fitnesse for Delphi 2006 / Delphi 2007 /Delphi 2009 Bradley Harris 2008-09-18T12:06:01Z 2009-09-01T16:58:43Z <p>Fitnesse has support for Delphi. See the <a href="http://www.fitnesse.org/FrontPage.FitServers" rel="nofollow">FitServers</a> page at fitnesse.org.</p> http://stackoverflow.com/questions/106546/performance-of-soap-vs-xml-rpc-or-rest 10 Performance of SOAP vs. XML-RPC or REST Bradley Harris 2008-09-20T00:23:28Z 2009-07-04T07:09:01Z <p>The arguments about the simplicity of solutions using XML-RPC or REST are easy to understand and hard to argue with.</p> <p>I have often also heard arguments that the increased overhead of SOAP may significantly impact used bandwidth and possibly even latency. I would like to see the results of a test that quantifies the impact. Any one know a good source for such information?</p> http://stackoverflow.com/questions/643859/which-comes-first-the-interface-or-the-class/643910#643910 2 Answer by Bradley Harris for Which comes first - The Interface or the Class Bradley Harris 2009-03-13T18:09:49Z 2009-03-13T18:09:49Z <p>I usually go with the second option. Write a class and extract interface later. Usually the reason for extracting an interface is the need for a second implementation of that interface (often as a mock for unit testing)</p> http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java/68068#68068 2 Answer by Bradley Harris for What is the best way to implement constants in Java ? Bradley Harris 2008-09-15T23:58:26Z 2009-01-28T21:12:28Z <p>A good object oriented design should not need many publicly available constants. Most constants should be encapsulated in the class that needs them to do its job. </p> http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/104584#104584 2 Answer by Bradley Harris for Objective-C switch using objects? Bradley Harris 2008-09-19T19:03:00Z 2008-09-19T19:03:00Z <p>The most common refactoring suggested for eliminating if-else or switch statements is introducing polymorphism (see <a href="http://www.refactoring.com/catalog/replaceConditionalWithPolymorphism.html" rel="nofollow">http://www.refactoring.com/catalog/replaceConditionalWithPolymorphism.html</a>). Eliminating such conditionals is most important when they are duplicated. In the case of XML parsing like your sample you are essentially moving the data to a more natural structure so that you won't have to duplicate the conditional elsewhere. In this case the if-else or switch statement is probably good enough. </p> http://stackoverflow.com/questions/97114/is-conditional-compilation-a-valid-mock-stub-strategy-for-unit-testing/97245#97245 0 Answer by Bradley Harris for Is conditional compilation a valid mock/stub strategy for unit testing? Bradley Harris 2008-09-18T21:36:12Z 2008-09-18T21:36:12Z <p>It might be useful as a tool to lean on as you refactor to testability in a large code base. I can see how you might use such techniques to enable smaller changes and avoid a "big bang" refactoring. However I would worry about leaning too hard on such a technique and would try to ensure that such tricks didn't live too long in the code base otherwise you risk making the application code very complex and hard to follow. </p> http://stackoverflow.com/questions/88007/unit-test-for-randomized-data/88123#88123 0 Answer by Bradley Harris for Unit test for randomized data Bradley Harris 2008-09-17T21:57:10Z 2008-09-17T21:57:10Z <p>You could seed your random number generator with a constant value in order to get non-random results and test those results. </p> http://stackoverflow.com/questions/86308/how-do-you-prevent-over-complicated-solutions-or-designs/87767#87767 1 Answer by Bradley Harris for How do you prevent over complicated solutions or designs? Bradley Harris 2008-09-17T21:17:35Z 2008-09-17T21:17:35Z <p>Using Test Driven Development and following Robert C. Martin's <a href="http://butunclebob.com/ArticleS.UncleBob.TheThreeRulesOfTdd" rel="nofollow">Three Rules of TDD</a>:</p> <ol> <li>You are not allowed to write any production code unless it is to make a failing unit test pass.</li> <li>You are not allowed to write any more of a unit test than is sufficient to fail; and compilation failures are failures.</li> <li>You are not allowed to write any more production code than is sufficient to pass the one failing unit test.</li> </ol> <p>In this way you are not likely to get much code that you don't need. You will always be focused on making one important thing work and won't ever get too far ahead of yourself in terms of complexity.</p> http://stackoverflow.com/questions/87610/automated-integration-testing-a-c-app-with-a-database/87705#87705 0 Answer by Bradley Harris for Automated integration testing a C++ app with a database Bradley Harris 2008-09-17T21:10:43Z 2008-09-17T21:10:43Z <p>As @<a href="http://stackoverflow.com/questions/87610/automated-integration-testing-a-c-app-with-a-database#87642">Kris K.</a> says dumping and restoring the database between each test will probably be the way to go. </p> <p>Since you are looking at doing testing external to the App I would look to build the testing framework in a language where you can take advantage of better testing tools.</p> <p>If you built the testing framework in Java you could take advantage of <a href="http://www.junit.org/" rel="nofollow">JUnit</a> and potentially even something like <a href="http://fitnesse.org/" rel="nofollow">FitNesse</a>.</p> <p>Don't think that just because the application under test is C++ that means you are stuck using C++ for your automated testing.</p> http://stackoverflow.com/questions/77726/xml-or-sqlite-when-to-drop-xml-for-a-database/77778#77778 3 Answer by Bradley Harris for Xml or Sqlite, When to drop Xml for a Database? Bradley Harris 2008-09-16T22:09:45Z 2008-09-16T22:09:45Z <p>XML is best used as an interchange format when you need to move data from your application to somewhere else or share information between applications. A database should be the preferred method of storage for almost any size application. </p> http://stackoverflow.com/questions/77090/are-there-any-good-continuous-testing-plugins-for-eclipse-out-right-now/77260#77260 1 Answer by Bradley Harris for Are there any good Continuous Testing plugins for Eclipse out right now? Bradley Harris 2008-09-16T21:21:47Z 2008-09-16T21:57:07Z <p>There is a list in this Ben Rady article at Object Mentor: <a href="http://blog.objectmentor.com/articles/2007/09/20/continuous-testing-explained" rel="nofollow">Continuous Testing Explained</a>. Unfortunately the only Eclipse tool appears to be <a href="http://ct-eclipse.tigris.org/" rel="nofollow">CT-Eclipse</a> which is not currently maintained either.</p> <p>There is also <a href="http://swing1979.googlepages.com/fireworks" rel="nofollow">Fireworks</a> for IntelliJ and <a href="http://www.infinitest.org/" rel="nofollow">Infinitest</a> which is not IDE specific but also has some IntelliJ integration.</p> http://stackoverflow.com/questions/74800/what-is-your-favorite-visual-studio-plugin/74828#74828 5 Answer by Bradley Harris for What is your favorite visual studio plugin? Bradley Harris 2008-09-16T17:30:18Z 2008-09-16T17:30:18Z <p><a href="http://www.hanselman.com/blog/IntroducingRockScroll.aspx" rel="nofollow">RockScroll</a> </p> http://stackoverflow.com/questions/61718/database-integration-tests/73274#73274 1 Answer by Bradley Harris for Database integration tests Bradley Harris 2008-09-16T14:58:45Z 2008-09-16T14:58:45Z <p>Just to add to Free Wildebeest's answer I have also used <a href="http://hsqldb.org/" rel="nofollow">HSQLDB</a> to do a similar type testing where each test gets a clean instance of the DB. </p> http://stackoverflow.com/questions/67875/good-ways-to-learn-cocoa/68030#68030 0 Answer by Bradley Harris for Good ways to Learn Cocoa? Bradley Harris 2008-09-15T23:49:14Z 2008-09-16T01:43:42Z <p>I have been working on learning Cocoa myself recently and have found Apple's own <a href="http://developer.apple.com/cocoa/" rel="nofollow">Cocoa resources</a> to be incredibly helpful. </p> <p>For example projects I have spent quite a bit of time in the <a href="http://trac.adiumx.com/wiki/GettingAdiumSource" rel="nofollow">Adium source</a>. Adium is a relatively large project so I am very often able to find examples of whichever concept I am interested in.</p> <p>The <a href="http://www.cocoadev.com/" rel="nofollow">CocoaDev</a> wiki can also be quite useful.</p> http://stackoverflow.com/questions/68459/refactoring-and-source-control-how-to/68499#68499 0 Answer by Bradley Harris for Refactoring and Source Control: How To? Bradley Harris 2008-09-16T01:20:36Z 2008-09-16T01:20:36Z <p>Frequent check ins. Team members should be checking in their changes and re-syncing their sandboxes <strong>at least</strong> once per day. With more frequent check ins merge conflicts will occur less often and be easier to manage when they do occur. </p> http://stackoverflow.com/questions/67898/tdd-and-productivity/68198#68198 2 Answer by Bradley Harris for TDD and productivity Bradley Harris 2008-09-16T00:20:19Z 2008-09-16T00:20:19Z <p>The learning curve for TDD is significant and ongoing. Teams that are learning TDD from scratch may often have to learn new ways of coding to effectively support TDD. </p> <p>While this can slow down the rate at which application code is produced. There is immediate benefit in the quality of the code and the team's understanding of that code.</p> http://stackoverflow.com/questions/91826/fitnesse-for-delphi-2006-delphi-2007-delphi-2009/91967#91967 Comment by Bradley Harris on Fitnesse for Delphi 2006 / Delphi 2007 /Delphi 2009 Bradley Harris 2008-09-18T13:43:40Z 2008-09-18T13:43:40Z You should probably edit your question and give details about the problems you are having with those FitServers.