Skip to content

Commit

Permalink
Start with capital letter
Browse files Browse the repository at this point in the history
  • Loading branch information
ravage84 committed Sep 5, 2018
1 parent bc92c15 commit 0e4ff8c
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions tests/TestCase/Cache/SimpleCacheEngineTest.php
Expand Up @@ -27,7 +27,7 @@
class SimpleCacheEngineTest extends TestCase
{
/**
* setup
* Setup
*
* @return void
*/
Expand All @@ -45,7 +45,7 @@ public function setUp()
}

/**
* tear down
* Tear down
*
* @return void
*/
Expand All @@ -57,7 +57,7 @@ public function tearDown()
}

/**
* test getting keys
* Test getting keys
*
* @return void
* @covers ::get
Expand All @@ -72,7 +72,7 @@ public function testGetSuccess()
}

/**
* test get on missing keys
* Test get on missing keys
*
* @return void
* @covers ::get
Expand All @@ -84,7 +84,7 @@ public function testGetNoKey()
}

/**
* test get on invalid keys. The PSR spec outlines that an exception
* Test get on invalid keys. The PSR spec outlines that an exception
* must be raised.
*
* @return void
Expand All @@ -98,7 +98,7 @@ public function testGetInvalidKey()
}

/**
* test set() inheriting the default TTL
* Test set() inheriting the default TTL
*
* @return void
* @covers ::set
Expand All @@ -111,7 +111,7 @@ public function testSetNoTtl()
}

/**
* test the TTL parameter of set()
* Test the TTL parameter of set()
*
* @return void
* @covers ::set
Expand All @@ -128,7 +128,7 @@ public function testSetWithTtl()
}

/**
* test set() with an invalid key.
* Test set() with an invalid key.
*
* @return void
* @covers ::set
Expand All @@ -141,7 +141,7 @@ public function testSetInvalidKey()
}

/**
* test delete on known and unknown keys
* Test delete on known and unknown keys
*
* @return void
* @covers ::delete
Expand All @@ -154,7 +154,7 @@ public function testDelete()
}

/**
* test delete on an invalid key
* Test delete on an invalid key
*
* @return void
* @covers ::delete
Expand All @@ -167,7 +167,7 @@ public function testDeleteInvalidKey()
}

/**
* test clearing cache data
* Test clearing cache data
*
* @return void
* @covers ::clear
Expand All @@ -183,7 +183,7 @@ public function testClear()
}

/**
* test getMultiple
* Test getMultiple
*
* @return void
* @covers ::getMultiple
Expand All @@ -203,7 +203,7 @@ public function testGetMultiple()
}

/**
* test getting multiple keys with an invalid key
* Test getting multiple keys with an invalid key
*
* @return void
* @covers ::getMultiple
Expand All @@ -219,7 +219,7 @@ public function testGetMultipleInvalidKey()
}

/**
* test getting multiple keys with an invalid keys parameter
* Test getting multiple keys with an invalid keys parameter
*
* @return void
* @covers ::getMultiple
Expand All @@ -234,7 +234,7 @@ public function testGetMultipleInvalidKeys()
}

/**
* test getMultiple adding defaults in.
* Test getMultiple adding defaults in.
*
* @return void
* @covers ::getMultiple
Expand All @@ -254,7 +254,7 @@ public function testGetMultipleDefault()
}

/**
* test setMultiple
* Test setMultiple
*
* @return void
* @covers ::setMultiple
Expand All @@ -272,7 +272,7 @@ public function testSetMultiple()
}

/**
* test setMultiple with an invalid key
* Test setMultiple with an invalid key
*
* @return void
* @covers ::setMultiple
Expand All @@ -290,7 +290,7 @@ public function testSetMultipleInvalidKey()
}

/**
* test setMultiple with ttl parameter
* Test setMultiple with ttl parameter
*
* @return void
* @covers ::setMultiple
Expand All @@ -312,7 +312,7 @@ public function testSetMultipleWithTtl()
}

/**
* test deleting multiple keys
* Test deleting multiple keys
*
* @return void
* @covers ::deleteMultiple
Expand All @@ -332,7 +332,7 @@ public function testDeleteMultiple()
}

/**
* test deleting multiple keys with an invalid key
* Test deleting multiple keys with an invalid key
*
* @return void
* @covers ::deleteMultiple
Expand All @@ -348,7 +348,7 @@ public function testDeleteMultipleInvalidKey()
}

/**
* test deleting multiple keys with an invalid keys parameter
* Test deleting multiple keys with an invalid keys parameter
*
* @return void
* @covers ::deleteMultiple
Expand All @@ -363,7 +363,7 @@ public function testDeleteMultipleInvalidKeys()
}

/**
* test partial success with deleteMultiple
* Test partial success with deleteMultiple
*
* @return void
* @covers ::deleteMultiple
Expand All @@ -378,7 +378,7 @@ public function testDeleteMultipleSomeMisses()
}

/**
* test has
* Test has
*
* @return void
* @covers ::has
Expand All @@ -392,7 +392,7 @@ public function testHas()
}

/**
* test has with invalid key
* Test has with invalid key
*
* @return void
* @covers ::has
Expand Down

0 comments on commit 0e4ff8c

Please sign in to comment.