Skip to content

Instantly share code, notes, and snippets.

@maaretp
Created August 12, 2018 06:37
Show Gist options
  • Save maaretp/124a35a8cbc3e45a9c7cb113bd8685e6 to your computer and use it in GitHub Desktop.
Save maaretp/124a35a8cbc3e45a9c7cb113bd8685e6 to your computer and use it in GitHub Desktop.
CheckItem method for Gilded Rose
public GildedRose checkItem(String item, Integer sellin, Integer quality) {
Item[] items = new Item[] { new Item(item, sellin, quality) };
GildedRose app = new GildedRose(items);
app.updateQuality();
return app;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment