/** * Test enumerating all transport configurations * * @return void */ public function testConfiguredTransport() { $result = Email::configuredTransport(); $this->assertInternalType('array', $result, 'Should have config keys'); $this->assertEquals(array_keys($this->transports), $result, 'Loaded transports should be present in enumeration.'); }