-- unit tests
-- $Revision: 194 $
--@alpha@
local CauldronTestSuite = {
mocks = {
GetItemCount = function(arg)
return 1;
end;
};
setUp = function()
return {};
end;
tearDown = function()
-- no tear down required
end;
-- core tests
-- UI tests
-- queue tests
-- shopping tests
-- shopping UI tests
-- tradeskill tests
-- util tests
testIsVendorItem = function()
assert(Cauldron:IsVendorItem(12345), "12345 should be a vendor item");
end;
testGetPotentialCraftCount = function()
assert(true, "");
end;
};
--@end-alpha@