TDD

Tag details

Welcome to the 'TDD' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'TDD'.

Look up Offsite Link "TDD" at The Free Dictionary

Latest blogosphere posts tagged “TDD”

  • Fast Track Test-Driven Development: Testify Your Project


    Software Development VideosAuthority Authority: 435
    This video presents the technical challenges that teams discover when adopting TDD difficult and a set of principles for successful TDD. it contains a demonstration of the Testify tool and how to use it to introduce TDD on your own project. ...
    10 hours ago
  • TDD: Useful when new on a project


    Mark NeedhamAuthority Authority: 468
    Something which Ive noticed over the last few projects that Ive worked on is that at the beginning when I dont know very much at all about the code base, domain and so on is that pairing with someone to TDD something seems to make it significantly easier for me to follow whats going on than other approaches Ive seen. ...
    3 days ago
  • Huawei s SAE Solution Successfully Completes TD-LTE Tests for 2010 Shanghai World Expo


    LTE watchAuthority Authority: 431
    Source: Huawei press release Huawei, a leader in providing next-generation telecommunication solutions to operators around the world, today announced that it s SAE (System Architecture Evolution) solution has successfully completed all the mandatory and optional tests on the TD-LTE trial network for 2010 Shanghai ...
    4 days ago
  • XML verification just got easier with easyb


    The Disco BlogAuthority Authority: 108
    There’s myriad ways to validate XML these days; in fact, with Groovy, the mechanics of parsing XML with XMLSlurper couldn’t be easier! Nevertheless, from time to time, because it’s my bag, baby, I’ve found that I’ve needed an easy way to validate XML documents without having to actually parse them ...
    4 days ago
  • Door open for 4 Taiwan telecom carriers to adopt TD-SCDMA or TD-LTE


    LTE watchAuthority Authority: 431
    Source: DigiTimes Four of the five 3G mobile telecom carriers in Taiwan have adopted the WCDMA standard while reserving a 5MHz frequency band which may be used for TDD (time-division duplexing) technologies including the China-developed TD-SCDMA and TD-LTE standards, according to industry sources. However, while ...
    5 days ago
  • Code Smells - Refactoring - Unit Tests


    Notes from a Tool UserAuthority Authority: 108
    Two weeks ago now I gave an introductory tutorial on “ From Code Smells to Unit Tests ” (pdf) at Agile Tour Toronto (thanks to the organizers for a great conference). The slides walk cover  an introduction to Technical Debt, SOLID Principles , The Sea of Complexity, Basic Code Smells, Refactoring and Unit ...
    6 days ago
  • Latching and mocking in concurrent tests


    Xebia BlogAuthority Authority: 116
    Concurrent testing is hard, but not as hard as you think. If you use the right tricks it can be done. This blog shows you one particular trick that uses a latch and a mock to ensure a test scenario is completed before running the verifications. While working on Spring Integration in Action , I experimented with a ...
    6 days ago
  • TDD in a Desgin by Contract World


    Software Development VideosAuthority Authority: 435
    After presenting some basics of Design by Contract using Microsoft’s SpecSharp framework, Greg Young explains how we can keep the Test First mentality in a Contract First world. http://www.infoq.com/presentations/TDD-in-a-DbC-World-Greg-Young
    1 week ago
  • Design for testability - WCF proxies


    VusCode - Coding dreams since 1998!Authority Authority: 408
    Recently I spent some time participating in projects involving Silverlight, Prism etc and there are couple of interesting things I’ve came up with during that period which I would like to share with the community in a form of a couple of blog posts showing the “enhancements” I did in our Prism based ...
    1 week ago
  • Unit tests for private methods are a code smell


    Richard DingwallAuthority Authority: 456
    This week I attended a talk where some people were discussing techniques for unit testing private methods — they were going on about problems they had getting something called Private Accessors to work with ReSharper. The tools they mentioned were completely foreign to me, and I wondered why I’d never heard of ...
    1 week ago
  • Daily del.icio.us for October 21st through October 30th


    Vinny Carpenter's blogAuthority Authority: 108
    JetBrains TeamCity Blog » Blog Archive » Yet another step to TeamCity 5.0 – TeamCity 5.0 is approaching inevitably and here we are with fresh EAP build. All major new features have been introduced already in previous EAPs, but still you’ll find lots of improvements and fixes to check Oracle Reveals Plans for ...
    1 week ago
  • Low-Technology


    the 'bee logAuthority Authority: 103
    Im completely obsessed with the idea of Low-Technology : The term low-technology is a description of those crafts and tools whose inception (typically) predates the Industrial Revolution. A test for low-technology may be that it can be practiced or fabricated with a minimum of Capital investment by an individual or ...
    1 week ago
  • Slides from Managing Software Debt Talk at PNSQC 2009


    Getting AgileAuthority Authority: 103
    Tomorrow at 1:30pm I will be discussing my paper published by the Pacific Northwest Software Quality Conference 2009 in Portland, OR on “Managing Software Debt: Continued Delivery of High Value as Systems Age”. I have uploaded the slides for this presentation and I hope that some of the new content will help those ...
    1 week ago
  • C++ Bowling Kata Result


    Object Mentor BlogAuthority Authority: 404
    I’m teaching a TDD and Refactoring class this week using C++. Since I had not recently wrote the bowling kata in C++, I figured it was about time to do it again. Unlike the previous Scala version, this one only addresses the happy-path. I do not consider throwing too many balls or scoring too many pins in any ...
    1 week ago
  • MIIT submits Chinas 4G standard to ITU


    LTE watchAuthority Authority: 431
    Source: TeleGeography Sohu IT reports that Chinas Ministry of Industry and Information Technology (MIIT) has submitted Chinas TD-LTE-Advanced technical specification to the International Telecommunication Union (ITU), thereby ensuring that the technical specification will be considered as an international standard ...
    1 week ago
  • Goodbye Simplicity; I’m Object Obsessed


    Managed ChaosAuthority Authority: 419
    In retrospect, I think Object Orientation has tremendously helped me become a better program. But at the same time, its also made me vulnerable to including extra complexity (or at least thinking in terms of more complex solutions) in my code. One of the important lessons I learned a few years ago was, not to try ...
    2 weeks ago
  • Testing Couchapps with Cucumber and Culerity


    upstream agile - softwareAuthority Authority: 99
    On last week’s RailsCamp UK I started hacking on a new CouchApp called HejHej. Its purpose is to help me learn Swedish, but what’s more important here: I wrote this app BDD style using Cucumber , the famous BDD tool and Culerity , my humble addition that allows me to test any webapp (including client side ...
    2 weeks ago
  • 10 resources to learn Moq


    CodeClimberAuthority Authority: 500
    Last week I described the stack I’ll be using to develop my new ASP.NET MVC project , and I said I was going to use RhinoMocks as mocking framework. Well, it later turned out that some tests were using RhinoMocks but most of them were using Moq and “ Il Maestro ” decided that the latter would be the mocking ...
    2 weeks ago
  • Mockito in six easy examples


    Gojko AdzicAuthority Authority: 464
    Mockito is a fantastic mock library for Java. I’m fascinated by how easy it is to use, compared to other things out there both in the Java and .NET world. Here is everything you need to know to get started in six really easy examples. First of all, get mockito from http://mockito.org/ . Almost everything really ...
    2 weeks ago
  • The “Unlegacy my Code” Kata


    Mark .NETAuthority Authority: 103
    Daily TDD Kata I’ve read a number of blog posts recommending doing a daily TDD ‘ kata ’ recently. For those unfamiliar with the concept, essentially you attempt to solve a simple programming task using TDD . The problems are often simple mathematical challenges, such as finding the prime factors of a ...
    2 weeks ago

Comments about TDD

Personal attacks are NOT allowed
Please read our comment policy