siesta-lite
Version:
Stress-free JavaScript unit testing and functional testing tool, works in NodeJS and browsers
23 lines (18 loc) • 345 B
JavaScript
Ext.define('My.awesome.Class', {
foo : 'bar',
getFoo : function() {
return this.foo;
},
setFoo : function(val) {
this.foo = val;
}
})
Ext.define('My.awesome.Class2', {
foo : 'bar',
getFoo : function() {
return this.foo;
},
setFoo : function(val) {
this.foo = val;
}
})