mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 12:22:12 +00:00
Merge pull request #15 from ihaworth/JavaPackageReintroduction
Re-introduce Java Packages
This commit is contained in:
commit
e95f2ee409
@ -1,3 +1,4 @@
|
||||
package com.gildedrose;
|
||||
class GildedRose {
|
||||
Item[] items;
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
package com.gildedrose;
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
import org.junit.Test;
|
||||
@ -1,3 +1,4 @@
|
||||
package com.gildedrose;
|
||||
public class Item {
|
||||
|
||||
public String name;
|
||||
@ -1,3 +1,4 @@
|
||||
package com.gildedrose;
|
||||
|
||||
public class TexttestFixture {
|
||||
public static void main(String[] args) {
|
||||
@ -4,7 +4,7 @@ full_name:Gilded Rose Refactoring Kata
|
||||
default_checkout:/Users/emily/training_materials/Refactoring-Katas/GildedRose
|
||||
|
||||
# Settings for the Java version
|
||||
executable:TexttestFixture
|
||||
executable:com.gildedrose.TexttestFixture
|
||||
interpreter:java
|
||||
# note you'll also need to update the file environment.gr with your classpath if you keep your classfiles somewhere unusual
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user