Extension\BranchPredictionTest::testVariants PHP Method

testVariants() public method

public testVariants ( )
    public function testVariants()
    {
        $b = new \Test\BranchPrediction();
        $this->assertTrue($b->testLikely1());
        $this->assertFalse($b->testLikely2(false));
        $this->assertTrue($b->testUnlikely1());
        $this->assertFalse($b->testUnlikely2(false));
    }
BranchPredictionTest