|
|
Stories recently tagged with 'Testing'
|
|
submitted by
adminjew
3 days, 7 hours ago
codebetter.com — Back in June, I announced the creation of FsTest, a testing Domain Specific Language for F#. Since that time, the F# team has released the September 2008 CTP, which finally gives F# full citizenship within Visual Studio with real project files. I felt it was time to update FsTest, and more in particular, FsxUnit, which uses xUnit.net as the back end for doing assertions. Go ahead and pick up the latest bits here from the CodePlex site. read more...
|
|
tags:
F#, Testing | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
Mendelt
7 days, 21 hours ago
blog.mendeltsiebenga.com — Part two in a series of blogposts describing how to unit test code that uses PInvoke calls. read more...
|
|
tags:
Testing | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
adminjew
9 days, 19 hours ago
lostechies.com — Your First QUnit Test
To start testing, you’ll need to start by creating an HTML page (MyFooTests.htm, for example). This page will need to reference the jquery core JS file, testrunner.js, testsuite.css, as well as the JS file containing the code you’re going to be testing. Lastly, the page will need some special HTML at the bottom with well-known ID’s so that QUnit can display its output. When you’re done, you should have a rough skeleton like this: read more...
|
|
tags:
Testing | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
Mendelt
10 days, 14 hours ago
blog.mendeltsiebenga.com — The first part in a series of tips, tricks and best practices on unit testing code that uses pinvoke. read more...
|
|
tags:
Testing | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
Matt_TCF
13 days, 13 hours ago
trycatchfail.com — Testing is important. If you make a code change, be VERY sure you test it. If you absolutely positively can't write a unit test for it, be sure you do very, very thorough manual testing. Don't just fire-and-commit and assume it all works, because it probably doesn't. As far as I'm concerned, if you can't prove that it works, it doesn't work, end of story. read more...
|
|
tags:
Testing | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
ndibek
16 days, 13 hours ago
nermins.net — A short introduction to some of the new features in RhinoMocks 3.5, by contrasting them with the tests written in old syntax... read more...
|
|
tags:
Testing | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 16 days, 15 hours ago, submitted by
jamesewelch
16 days, 22 hours ago
weblogs.asp.net — 15 new ASP.NET MVC videos were just published at the http://www.ASP.net/mvc website. The first 10 videos are basic tutorials on the ASP.NET MVC framework. If you haven’t had a chance to play with ASP.NET MVC yet, these tutorials are a great introduction.
The second set of 5 videos is part of an ongoing video series: ASP.NET MVC Pair Programming. In these videos, I pair with a prominent community expert to build an entire ASP.NET MVC application from start to finish (because of time constraints – a very, very simple application). The goal is to emphasize the process of building a web application instead of the product.
read more...
add a comment
|
category: ASP.NET | Views: 171
|
|
tags:
MVC, NUnit, Videos, ASP.NET, Testing | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
davids
19 days, 14 hours ago
itwebmonkey.com — Just a quick little article noting the great add-on available for Firefox to help toggle between dev and live servers. read more...
|
|
tags:
Tips, and, Tricks, Firefox, Testing | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
martinig
20 days, 23 hours ago
methodsandtools.com — Acceptance test-driven development is what helps developers build high-quality software that fulfills the business’s needs as reliably as TDD helps ensure the software’s technical quality. read more...
add a comment
|
category: Unit Testing | Views: 13
|
|
tags:
TDD, Agile, Testing | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
tiernano
21 days, 9 hours ago
weblogs.asp.net — In this tip, Stephen Walther demonstrates how to unit test the LINQ to SQL DataContext object by creating a Fake DataContext. You can perform standard LINQ to SQL inserts, updates, deletes and LINQ queries against the Fake DataContext. read more...
|
|
tags:
Testing | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
adminjew
21 days, 13 hours ago
theruntime.com — Your environment can have a profound effect on how you develop software. The details of what I discuss here have zero practical meaning outside of the .Net world (though you can probably find parallels in other environments). That’s because .Net developers have access to tools that invalidate rules of software design that are fundamentally important elsewhere (before you question whether an environment can effect what is good design, consider the difference between good design in C and, say, Prolog). For .Net, the free availability of a tool like Typemock makes a major design consideration simply disappear—namely, testability. Typemock literally robs the term “testability” of meaning in .Net design considerations. That’s a freedom that should leave other developers gasping in envy. read more...
|
|
tags:
Testing | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 24 days, 18 hours ago, submitted by
Jemm
25 days, 2 hours ago
readwriteweb.com — "In this post we look at a dozen unit testing tips that software engineers can apply, regardless of their programming language or environment." read more...
add a comment
|
category: Unit Testing | Views: 548
|
|
tags:
Testing | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
smsohan
25 days, 6 hours ago
smsohan.blogspot.com — I have been doing TDD for about two years now and using mock testing for interaction based unit testing in my projects. What I have learned over this time is, a unit testable design leads to introduction of interfaces and dependency injection for testing a code in isolation. And when I want to perform tests on my interactions, I need to create mock objects and inject these mock instances to my object under test. Sometimes, a unit test class needs to create quite a few of such mock objects and I feel this can be done using a simple wrapper around the usual mocking frameworks.
I suggest a similar and even more powerful wrapper so that you don't need to create instances for each of the mock objects, rather do it in a single call for all your desired mocks. I have shown this method for NMock2, however, its evident that you can write your own method for your favorite mocking framework just using this code as a reference. read more...
|
|
tags:
Testing | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
david
25 days, 12 hours ago
davybrion.com — Provides some guidelines on how to answer the question "Do I need to mock this object for this test?". read more...
|
|
tags:
Testing | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|