Skip to content

Commit

Permalink
Add the empty test
Browse files Browse the repository at this point in the history
  • Loading branch information
beberlei committed Jan 16, 2013
1 parent 49709da commit 1f3d24d
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
vendor
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Guilded Rose Kata for PHP
# Gilded Rose Kata for PHP

Port of the Guilded Rose Kata for C# (https://github.com/NotMyself/GildedRose)
Port of the Gilded Rose Kata for C# (https://github.com/NotMyself/GildedRose)

## Install

* Git Checkout: git clone https://github.com/qafoo/gilded-rose-kata
* Generate Autoloader: composer dump-autoload
* Run tests with "phpunit"

## Introduction

Expand Down
10 changes: 10 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "qafoo/gilded-rose-kata",
"autoload": {
"psr-0": {
"GildedRose\\Tests\\": "src/",
"GildedRose\\": "src/"
}
}
}

8 changes: 8 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="Gilded Rose">
<directory>tests/</directory>
</testsuite>
</testsuites>
</phpunit>
8 changes: 8 additions & 0 deletions tests/GildedRose/Tests/GildedRoseTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php

namespace GildedRose\Tests;

class GildedRoseTest extends \PHPUnit_Framework_TestCase
{
}

0 comments on commit 1f3d24d

Please sign in to comment.