diff --git a/tests/modules/core/lib/Auth/Process/AttributeValueMapTest.php b/tests/modules/core/lib/Auth/Process/AttributeValueMapTest.php
index 2117e06a1df8e6e507031c310e441f260df1b9b1..5c0d7a86f52543a05ea58f788c6273d648d2d076 100644
--- a/tests/modules/core/lib/Auth/Process/AttributeValueMapTest.php
+++ b/tests/modules/core/lib/Auth/Process/AttributeValueMapTest.php
@@ -27,6 +27,9 @@ class AttributeValueMapTest extends \PHPUnit_Framework_TestCase
 
     /**
      * Test the most basic functionality.
+     *
+     * @covers SimpleSAML\Module\core\Auth\Process\AttributeValueMap::__construct
+     * @covers SimpleSAML\Module\core\Auth\Process\AttributeValueMap::process
      */
     public function testBasic()
     {
@@ -55,6 +58,9 @@ class AttributeValueMapTest extends \PHPUnit_Framework_TestCase
 
     /**
      * Test basic functionality, remove duplicates
+     *
+     * @covers SimpleSAML\Module\core\Auth\Process\AttributeValueMap::__construct
+     * @covers SimpleSAML\Module\core\Auth\Process\AttributeValueMap::process
      */
     public function testNoDuplicates()
     {
@@ -84,6 +90,9 @@ class AttributeValueMapTest extends \PHPUnit_Framework_TestCase
 
     /**
      * Test the %replace functionality.
+     *
+     * @covers SimpleSAML\Module\core\Auth\Process\AttributeValueMap::__construct
+     * @covers SimpleSAML\Module\core\Auth\Process\AttributeValueMap::process
      */
     public function testReplace()
     {
@@ -114,6 +123,9 @@ class AttributeValueMapTest extends \PHPUnit_Framework_TestCase
 
     /**
      * Test the %keep functionality.
+     *
+     * @covers SimpleSAML\Module\core\Auth\Process\AttributeValueMap::__construct
+     * @covers SimpleSAML\Module\core\Auth\Process\AttributeValueMap::process
      */
     public function testKeep()
     {
@@ -145,7 +157,10 @@ class AttributeValueMapTest extends \PHPUnit_Framework_TestCase
     /**
      * Test unknown flag Exception
      *
-     * @expectedException Exception
+     * @covers SimpleSAML\Module\core\Auth\Process\AttributeValueMap::__construct
+     * @covers SimpleSAML\Module\core\Auth\Process\AttributeValueMap::process
+     *
+     * @expectedException \Exception
      */
     public function testUnknownFlag()
     {
@@ -169,7 +184,10 @@ class AttributeValueMapTest extends \PHPUnit_Framework_TestCase
     /**
      * Test missing Source attribute
      *
-     * @expectedException Exception
+     * @covers SimpleSAML\Module\core\Auth\Process\AttributeValueMap::__construct
+     * @covers SimpleSAML\Module\core\Auth\Process\AttributeValueMap::process
+     *
+     * @expectedException \Exception
      */
     public function testMissingSourceAttribute()
     {
@@ -193,7 +211,10 @@ class AttributeValueMapTest extends \PHPUnit_Framework_TestCase
     /**
      * Test missing Target attribute
      *
-     * @expectedException Exception
+     * @covers SimpleSAML\Module\core\Auth\Process\AttributeValueMap::__construct
+     * @covers SimpleSAML\Module\core\Auth\Process\AttributeValueMap::process
+     *
+     * @expectedException \Exception
      */
     public function testMissingTargetAttribute()
     {