Unit tests
Unit tests are used to verify your classes and methods are behaving as you expect. Here's how to get started.
new MVC.Test.Unit('animals',{
test_truth: function() {
this.assert(true);
}
});
For more information, check out the documentation.
Functional tests
Functional tests are used to simulate user interactions with your page. Here's how to get started.
new MVC.Test.Functional('widget',{
test_truth: function() {
this.assert(true);
}
});
For more information, check out the documentation.