$array = [a => '1',
b => '2']
For example, I want to check if a was either 1 or 3. I thought using this would work.
$this->assertThat(
$this->assertContains('1',$array),
$this->logicalOr(
$this->assertContains('3',$array)
));
$array = [a => '1',
b => '2']
For example, I want to check if a was either 1 or 3. I thought using this would work.
$this->assertThat(
$this->assertContains('1',$array),
$this->logicalOr(
$this->assertContains('3',$array)
));