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'.

Look up Offsite Link "Unit", Offsite Link "Testing" at The Free Dictionary

Latest blogosphere posts tagged “Unit Testing”

  • Testing/QA Professionals Required in Gurgaon


    CareerGuruz.ComAuthority Authority: 153
    Testing/QA ProfessionalsSkills: Software Testing, QA, .Net, JScript, VBScriptJob Description: – QA & System testing of web based applications- Preparing test plans, scripts & test cases for functionality, GUI & performance testing- Knowledge of SDLC and Bug life cycle is a must- Should be well acquainted ...
    2 days ago
  • Use Understood Methods Rule


    Basil Vandegriend: Professional Software DevelopmentAuthority Authority: 106
    Over the years I have refined the approach I use to write code. Recently I codified a key aspect of this approach as a practice I call the Use Understood Methods Rule. The basic formulation of the rule is quite simple: when coding a method only invoke other methods whose behavior you clearly understand [...]
    6 days ago
  • Speed Tracer Tutorial


    Software Development VideosAuthority Authority: 138
    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 ...
    1 week ago
  • Java, Testing jobs, walk-in on Sat 12th December 09


    CareerGuruz.ComAuthority Authority: 153
    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 ...
    1 week ago
  • Unit testing and ASP.NET MVC Comments


    Sayed Ibrahim Hashimi - MSBuild, C#, Visual Studio, Training, and moreAuthority Authority: 99
    Unit testing has been aroundfor quite a while and a lot of developers have created their own unit tests. Evenbeing a simple concept and having been around for some time I still think that unittests are misunderstood, poorly written and dont follow best practices by a majorityof developers. Im not a unit testing ...
    1 week ago
  • 100+ Open Source/Free Functional Testing Tools


    TuVinhSoft .,JSCAuthority Authority: 135
    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 [...]
    2 weeks ago
  • System Testing: Why? What? & How?


    TuVinhSoft .,JSCAuthority Authority: 135
    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 ...
    2 weeks ago
  • Simple XML Testing from Java


    behind the timesAuthority Authority: 106
    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 ...
    2 weeks ago
  • To EasyMock or to Mockito?


    The Disco BlogAuthority Authority: 399
    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 ...
    2 weeks ago
  • Test Driven Development – Benefits, Limitations, and Techniques


    Basil Vandegriend: Professional Software DevelopmentAuthority Authority: 106
    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 ...
    2 weeks ago
  • The Kanban Story: What We Do and What We Don’t Do


    Pawel Brodzinski on Software Project ManagementAuthority Authority: 411
    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 ...
    2 weeks ago
  • TDD Master class in Vienna, January 18


    ISerializable - Roy Osherove's BlogAuthority Authority: 92
    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 ...
    2 weeks ago
  • Wrapping up the StructureMap Automocking Container


    Elegant CodeAuthority Authority: 517
    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 ...
    2 weeks ago
  • Using Cucumber to Test CLR Assembly


    Software Development VideosAuthority Authority: 138
    This screencast shows how to unit test a .NET CLR assembly using Cucumber BDD Framework.
    3 weeks ago
  • December BayJax: John Resig, “JavaScript Testing and Performance Analysis”


    Yahoo! User Interface BlogAuthority Authority: 120
    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 ...
    3 weeks ago
  • Test infrastructure


    Alkampfer's PlaceAuthority Authority: 122
    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 ...
    3 weeks ago
  • Dark arts of TDD explained


    Gojko AdzicAuthority Authority: 532
    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 ...
    4 weeks ago
  • Unit testing the Eclipse way – Part 2


    TuVinhSoft .,JSCAuthority Authority: 135
    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 ...
    4 weeks ago
  • Unit testing the Eclipse way – Part 1


    TuVinhSoft .,JSCAuthority Authority: 135
    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 ...
    4 weeks ago
  • Taste, confusion


    Advertising, Marketing and DesignAuthority Authority: 147
    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 ...
    4 weeks ago

Comments about Unit Testing

Personal attacks are NOT allowed
Please read our comment policy