Example #1
0
 /**
  * Tests getting a list of installed asymmetric cyphers.
  *
  * @covers empire\framework\crypto\CryptoFactory::getAsymmetricCyphers
  */
 public function testGetAsymmetricCyphers()
 {
     $asymmetricCyphers = $this->instance->getAsymmetricCyphers();
     if (!empty($asymmetricCyphers)) {
         $this->assertContainsOnly('string', $asymmetricCyphers);
     }
 }