mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 12:22:12 +00:00
12 lines
335 B
Matlab
12 lines
335 B
Matlab
classdef TestGildedRose < matlab.unittest.TestCase
|
|
|
|
methods(Test)
|
|
% Test methods
|
|
function test_standard_item(tc)
|
|
items = [Item("foo", 4, 5)];
|
|
gilded_rose = GildedRose(items);
|
|
gilded_rose.update_quality();
|
|
tc.verifyEqual(items(1).name, "Fixme")
|
|
end
|
|
end
|
|
end |