notEmpty(); foreach ($webHosts as $host) { verify($host['interval'])->greaterThan(0); verify($host['emails'])->greaterThan(0); } } public function testItReturnsAListOfSMTPHosts() { $smtpHosts = Hosts::getSMTPHosts(); verify($smtpHosts)->notEmpty(); foreach ($smtpHosts as $host) { verify($host['interval'])->greaterThan(0); verify($host['emails'])->greaterThan(0); } } }