Wednesday, March 15, 2006

Fit: Framework for Integrated Test

Saya berkesempatan download FIT.Net dan run a few test guna code sendiri. Menarik.. test tool FIT.

Di ambil dari page FIT -
"Great software requires collaboration and communication. Fit is a tool for enhancing collaboration in software development. It's an invaluable way to collaborate on complicated problems--and get them right--early in development.
Fit allows customers, testers, and programmers to learn what their software should do and what it does do. It automatically compares customers' expectations to actual results."

Running Test - IrwanTest





IrwanTestFit.TestFit
iyAdd()
100100200
100300300


Selepas running Test

Running Test - IrwanTest






IrwanTestFit.TestFit
iyAdd()
100100200
100300300 expected

400 actual


Code Test
============
using fit;
using System;

namespace IrwanTestFit
{
public class TestFit : ColumnFixture
{
public int i;
public int y;

public int Add()
{
return i + y;
}
}
}

0 comments: