Unit Testing
Tag details
Welcome to the 'Unit Testing' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'Unit Testing'.
Latest blogosphere posts tagged “Unit Testing”
-
GTAC 2009 – JsTestDriver
Software Development Videos —
Authority: 435
The proliferation of JavaScript unit-testing frameworks in the JavaScript community shows that no one has yet found the magical combination of features to make JavaScript testing a no-brainer. We like to believe that JsTestDriver will change that by redefining JavaScript testing frameworks and as a result will deliver ...14 hours ago -
Test driven design – Willed vs. Forced Designs
ISerializable - Roy Osherove's Blog —
Authority: 483
I’m writing this as a typemock employee, but also as someone who has sat on the other side of the line for several good years, and can argue in both ways. The following, I feel, is true no matter where I work. There are two ways people use tests to drive design, as far as I see. one is great, and I agree ...4 days ago -
Apple iPhone Tech Talk London 2009: Testing and Debugging Your iPhoneApplication
Expanding horizons —
Authority: 134
Just before this session, I had an interesting discussion with Mike of Broadersheet about unit testing. He uses defensive code with asserts and logging and couldn’t see the value of writing unit tests especially for mostly UI code. However, Apple have converted to using unit tests and are making it easy for ...4 days ago -
Unit Testing as the Last Resort for Code Verification?
david.segonds.org —
Authority: 118
This seems counter intuitive to me and to the Test Driven Development philosophy but this article from Dr. Dobbs Code Talk states that there are far more effective techniques for Code Verification than Unit Testing. I let you judge. [via Dr. Dobbs Code Talk ] Related posts: Scrum or Kanban? Pick One And Get On ...5 days ago -
How to test asynchronous systems efficiently
Gojko Adzic —
Authority: 412
I got this e-mail from a reader today: I don’t know how can I test asynchronous systems. We develop Voice Communication System applications and everything is based on (asynchronous) Request-Response. I’m trying to write unit tests for such application [...] What is the preferable way to do it? Here I think I ...5 days ago -
Embedded Memory Constraints and TDD
James Grenning's Blog —
Authority: 99
Constrained Memory is the reality for many embedded developers. Running tests in the development system won’t suffer the same memory constraints found in the target. Here are a few things to help TDD in constrained memory situations.First of all, use dual targeting so the bulk of your code is tested off-target. See ...6 days ago -
Fast Track Test-Driven Development: Testify Your Project
Software Development Videos —
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. ...1 week ago -
XML verification just got easier with easyb
The Disco Blog —
Authority: 109
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 ...1 week ago -
YUI Theater — Ron Adams: “Automated Integration Testing with YUI Test, Selenium and Hudson”
Yahoo! User Interface Blog —
Authority: 527
Ron Adams is a Yahoo! engineer in Southern California who has worked on a variety of Yahoo!’s media products including OMG and who now works for Yahoo! Sports . Ron has been working with colleagues in QA to automate the exercise of JavaScript unit tests, and his YUICONF 2009 session was entitled “ Automated ...1 week ago -
Grails Testing Alias to Rerun Failed Tests
Ted Naleid —
Authority: 103
A while ago I blogged about my grails testing aliases and how much time they save me. I’ve made some enhancements to them in the interim that have made them even easier to use. The most important alias is gtaf , which is short for “grails test-app” for failed tests. It will search through your test ...1 week ago -
Beautiful (XMPP) Testing
El Tramo —
Authority: 92
O’Reilly recently released the book Beautiful Testing , a collection of essays about testing and QA in general. As I mentioned earlier , I wrote an article in that book on (unit) testing XMPP protocols, using Swift as a motivating example. Since the book’s scope may (oddly enough) not always be as ...2 weeks ago -
Automatically test your Wicket panel HTML markup
StuQ.nl —
Authority: 99
Are you testing your HTML markup automatically yet? If your markup does not match the Java code, your Wicket panel does not work. It’s easy to get early feedback when your panels are broken: just unit test them!In this blog post I describe a way of automatically verifying that the HTML markup of Wicket panels match ...2 weeks ago -
Dew Drop – November 1, 2009
Alvin Ashcraft's Morning Dew —
Authority: 126
Jump to: .NET / Visual Studio | Web Development | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Community / Events | Database | Miscellaneous | More Link Collections | Book of the Day .NET / Visual Studio Character Testing with the Char ...2 weeks ago -
Test Driving GUI with Approval Tests
Software Development Videos —
Authority: 435
This video shows why you want to write unit tests for the perspectives of specifications, feedback, regression & granularity. Then write a GUI in C# using Windows Forms & Approval Tests. ApprovalTests is an open source tool that supports C#, Java, Ruby for unit or acceptance tests.2 weeks ago -
Flex and Air in the Trenches
Software Development Videos —
Authority: 435
Scott Delap shares his experience creating a lobby interface for an online game using Flex&Air. He details on related technologies used, available tooling and frameworks pros&cons, remoting options, unit, functional and load testing approach used. ...2 weeks ago -
Dew Drop – October 26, 2009
Alvin Ashcraft's Morning Dew —
Authority: 126
Jump to: .NET / Visual Studio | Design / Methodology / Testing | Silverlight / WPF | Podcasts / Screencasts / Videos | Database | Miscellaneous | More Link Collections | Book of the Day .NET / Visual Studio How to use MongoDB from PowerShell and F# (Doug Finke) ReSharper Discount and ...3 weeks ago -
Integration Test Brought to you by Powershell & NUnit – with a Little Specification Syntax for Flavoring
Elegant Code —
Authority: 514
One of the tools I’ve used the last half of a year and really enjoyed is the C# specification extension methods when writing unit test assertions. If you’re looking for a little more background on the topic, I wrote about Fluent Specification Extensions in a past blog. Recently I wanted to execute a PowerShell ...3 weeks ago -
Mockito in six easy examples
Gojko Adzic —
Authority: 412
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 ...3 weeks ago -
TypeMOQ API
ISerializable - Roy Osherove's Blog —
Authority: 483
I was fiddling around with the typemock API, see what it would belike to use it in a more MOQ like manner: to support this, all the code you need, including the Faker class exists here . you’d need to reference the typemock dll and the typemock c# API dll to make it work. I’m not sure I’m crazy ...3 weeks ago -
The “Unlegacy my Code” Kata
Mark .NET —
Authority: 92
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 ...3 weeks ago