for (int i = 0; i < ethernet_address_array.length; i++)
{
byte[] ethernet_address = ethernet_address_array[i].asByteArray();
// check that none of the EthernetAddresses are null
assertFalse("dummy EthernetAddress was null",
Arrays.equals(null_ethernet_address.asByteArray(),
ethernet_address));
// check that the "broadcast" bit is set in the created address
/* 08-Feb-2004, TSa: Fixed as per fix to actual code; apparently
* broadcast bit is LSB, not MSB.