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”
-
Speed Tracer Tutorial
Software Development Videos —
Authority: 436
Learn about one of Google Web Toolkit 2.0’s newest tools, Speed Tracer, in this video tutorial. This video provides an overview of Speed Tracer, a Chrome extension which enables developers to profile the internals of the browser, preventing bottlenecks by enabling diagnosis of hidden problems. Andrew Bowers will ...16 hours ago -
Java, Testing jobs, walk-in on Sat 12th December 09
CareerGuruz.Com —
Authority: 152
TesterJob Description: -Should be able to create and review test plan and execute test cases.-Should be well versed in testing concepts and different types of testing like Unit testing, Functional testing and Load testingExp: 2-4yrsWalk-in Date: 12th Dec 09Time: 09:00am to 02:00pmCompany Name: Integra Micro Software ...20 hours ago -
100+ Open Source/Free Functional Testing Tools
TuVinhSoft .,JSC —
Authority: 139
by Jay PhilipsIt is very important to make sure that your application functions as expected. There may be times that you add one little piece of code and all of a sudden other parts of the application no longer works. You may not have time/capacity to manually go back and regression test all the pieces [...]6 days ago -
System Testing: Why? What? & How?
TuVinhSoft .,JSC —
Authority: 139
Introduction: ‘Unit testing’ focuses on testing each unit of the code.‘Integration testing’ focuses on testing the integration of “units of code” or components.Each level of testing builds on the previous level.‘System Testing’ is the next level of testing. It focuses on testing the system as a ...6 days ago -
Simple XML Testing from Java
behind the times —
Authority: 92
2009 is coming to a close and Im writing a blog post about Java and XML. The blogs called "behind the times" for a reason: no fancy dynamic languages, JSON, or REST. Straight up XML on Java action. One of my favorite editions to our enterprise toolset this year was XMLUnit . Wed been using Groovy in testing, and ...1 week ago -
To EasyMock or to Mockito?
The Disco Blog —
Authority: 109
From time to time, I’ve found that mocking various dependencies can be helpful in testing behavior. Briefly, mocking an object allows you to fake its behavior so as to more fully isolate some other object depending on this behavior — the classic use case is that of mocking a data access layer, for example. In ...1 week ago -
Test Driven Development – Benefits, Limitations, and Techniques
Basil Vandegriend: Professional Software Development —
Authority: 107
I wrote previously about the process I went through in adopting test driven development (TDD). In this article I discuss my experience with TDD: the benefits, the limitations, and the techniques I use when doing TDD.BenefitsThis section covers the benefits, as I see them, of doing TDD. This does not include the ...1 week ago -
The Kanban Story: What We Do and What We Don’t Do
Pawel Brodzinski on Software Project Management —
Authority: 414
Last two posts of the series (on Kanban Board and on setting up whole thing ) were Kanban implementation-in-a-pill kind of story. As you may guess that’s not all since Kanban doesn’t prescribe many things which you can use and, most of the time, you do. To show the big picture there are two lists: practices we ...1 week ago -
TDD Master class in Vienna, January 18
ISerializable - Roy Osherove's Blog —
Authority: 447
Hi All. If you live in or near Vienna, i hope youll find interest in the course that I am giving there: A five day TDD master class in Vienna, on January 18th heres what students of this course had to say after finishing it: http://osherove.com/testimonials/ to learn more ...1 week ago -
Wrapping up the StructureMap Automocking Container
Elegant Code —
Authority: 500
I have been using StructureMap.AutoMocking with MSpec (Machine.Specifications) and Rhino.Mocks for a few months now. Although I am very comfortable with the patterns that emerge from using the frameworks together, introducing StructureMap.Automocking to other developers is sometimes challenging. When viewing a ...1 week ago -
Using Cucumber to Test CLR Assembly
Software Development Videos —
Authority: 436
This screencast shows how to unit test a .NET CLR assembly using Cucumber BDD Framework.2 weeks ago -
December BayJax: John Resig, “JavaScript Testing and Performance Analysis”
Yahoo! User Interface Blog —
Authority: 124
BayJax returns to Yahoo! on December 11 with a talk from jQuery creator John Resig ( @jeresig ). JavaScript Testing and Performance Analysis Yahoo! HQ in Sunnyvale. Building E, Classrooms 9 & 10. Pizza at 5:30 p.m., talks start at 6:15 p.m. A two-part talk: A comprehensive look at what you need to ...2 weeks ago -
Test infrastructure
Alkampfer's Place —
Authority: 124
Unit tests must be as clearer as possible, I found that in standard project I’m working, I use nhibernate + stored procedures for massive operations. Most of the tests contains code to preload database, recreate structure or manage transaction, so, lot of time ago I decided to build some infrastructure to make this ...2 weeks ago -
Dark arts of TDD explained
Gojko Adzic —
Authority: 518
Growing Object Oriented Software, Guided by Tests , by Steve Freeman and Nat Pryce is a TDD book, but unlike any other on the market today. First of all, the book deals mostly with advanced unit testing topics, such as designing tests for readability and mocking, and addresses many common stumbling points that ...2 weeks ago -
Unit testing the Eclipse way – Part 2
TuVinhSoft .,JSC —
Authority: 139
In Part 2 of this series, Michael Nyika continues to discusses Unit Testing using Eclipse providing practical Scenarios where jMock can can be used to simulate interface calls. Scenario 1: Use jMock to mock interfacesTesting the service method in the ServiceClass class is simple. Suppose the test requirement is to ...2 weeks ago -
Unit testing the Eclipse way – Part 1
TuVinhSoft .,JSC —
Authority: 139
In Part 1 of this series, Michael Nyika discusses Unit Testing using Eclipse. Does your legacy code demand a matching test suite of classes to run against its source code base? For such purposes, jMock qualifies as a great testing framework. However, not all cases may suit the occasion, especially when you must ...3 weeks ago -
Taste, confusion
Advertising, Marketing and Design —
Authority: 149
This morning my first sip of tea tasted like old coffee. I used one of those plastic ‘travel mugs’ for my tea in the morning and sometimes, no matter how many times you wash it, the flavor of old coffee never quite leaves. Maybe I’m just overly sensitive, but if I wanted to drink coffee, I would have, so ...3 weeks ago -
PDC 2009 Day 1: Code Contracts and Pex: Power Charge Your Assertions and Unit Tests
All Your Base Are Belong To Us —
Authority: 548
Code Contracts are a mechanism coming out of incubation at Microsoft Research for expressing design intent when implementing an API. The idea is to specify assertions that are verified at runtime to ensure that callers provide proper information to your methods. There are ways to specify contractual information on ...3 weeks ago -
Super Tuesday!
{ null != Steve } —
Authority: 114
One of my coworkers recommend combining some posts together than one a bunch of ‘one offs’ of links or news of interest. I’ve accumulated a set of links, thoughts, experiences, etc… over the last few days (I’ve been busy). New Sharp Architecture Release ...3 weeks ago -
Adopting Test Driven Development
Basil Vandegriend: Professional Software Development —
Authority: 107
I have always been keen on using automated unit tests since I first heard about them almost a decade ago. I have known about test driven development (TDD) for almost as long but the practice of writing tests first before writing production code never really clicked for me when I first tried it years ago. [...]3 weeks ago

