/**
  * @covers Kupivkredit\ClassLoader::register
  */
 public function testRegisterNamespace()
 {
     $before = count($this->object->getNamespaces());
     $this->object->registerNamespace('KupivkreditTest', __DIR__);
     $namespaces = $this->object->getNamespaces();
     $this->assertArrayHasKey('KupivkreditTest', $namespaces);
     $this->assertEquals($before + 1, count($namespaces));
 }