markTestSkipped( "These tests required atleast PHP 5.1.3" ); } $this->tempDir = $this->createTempDir( __CLASS__ . sprintf( '_%03d_', ++$i ) ) . '/'; $this->basePath = dirname( __FILE__ ) . '/data/'; } protected function tearDown() { $this->removeTempDir(); } protected function addSampleData( ezcGraphChart $chart ) { $chart->data['sampleData'] = new ezcGraphArrayDataSet( array( 'sample 1' => 234, 'sample 2' => -21, 'sample 3' => 324, 'sample 4' => 120, 'sample 5' => 1) ); $chart->data['moreData'] = new ezcGraphArrayDataSet( array( 'sample 1' => 112, 'sample 2' => 54, 'sample 3' => 12, 'sample 4' => -167, 'sample 5' => 329) ); $chart->data['Even more data'] = new ezcGraphArrayDataSet( array( 'sample 1' => 300, 'sample 2' => -30, 'sample 3' => 220, 'sample 4' => 67, 'sample 5' => 450) ); } public function testLineChartOptionsPropertyLineThickness() { $options = new ezcGraphLineChartOptions(); $this->assertSame( 2, $options->lineThickness, 'Wrong default value for property lineThickness in class ezcGraphLineChartOptions' ); $options->lineThickness = 4; $this->assertSame( 4, $options->lineThickness, 'Setting property value did not work for property lineThickness in class ezcGraphLineChartOptions' ); try { $options->lineThickness = false; } catch ( ezcBaseValueException $e ) { return true; } $this->fail( 'Expected ezcBaseValueException.' ); } public function testLineChartOptionsPropertyFillLines() { $options = new ezcGraphLineChartOptions(); $this->assertSame( false, $options->fillLines, 'Wrong default value for property fillLines in class ezcGraphLineChartOptions' ); $options->fillLines = 230; $this->assertSame( 230, $options->fillLines, 'Setting property value did not work for property fillLines in class ezcGraphLineChartOptions' ); $options->fillLines = false; $this->assertSame( false, $options->fillLines, 'Setting property value did not work for property fillLines in class ezcGraphLineChartOptions' ); try { $options->fillLines = true; } catch ( ezcBaseValueException $e ) { return true; } $this->fail( 'Expected ezcBaseValueException.' ); } public function testLineChartOptionsPropertySymbolSize() { $options = new ezcGraphLineChartOptions(); $this->assertSame( 8, $options->symbolSize, 'Wrong default value for property symbolSize in class ezcGraphLineChartOptions' ); $options->symbolSize = 10; $this->assertSame( 10, $options->symbolSize, 'Setting property value did not work for property symbolSize in class ezcGraphLineChartOptions' ); try { $options->symbolSize = false; } catch ( ezcBaseValueException $e ) { return true; } $this->fail( 'Expected ezcBaseValueException.' ); } public function testLineChartOptionsPropertyHighlightFont() { $options = new ezcGraphLineChartOptions(); $options->highlightFont = $file = $this->basePath . 'font.ttf'; $this->assertSame( $file, $options->highlightFont->path, 'Setting property value did not work for property highlightFont in class ezcGraphLineChartOptions' ); $this->assertSame( true, $options->highlightFontCloned, 'Font should be cloned now.' ); $fontOptions = new ezcGraphFontOptions(); $fontOptions->path = $this->basePath . 'font2.ttf'; $options->highlightFont = $fontOptions; $this->assertSame( $fontOptions, $options->highlightFont, 'Setting property value did not work for property highlightFont in class ezcGraphLineChartOptions' ); try { $options->highlightFont = false; } catch ( ezcBaseValueException $e ) { return true; } $this->fail( 'Expected ezcBaseValueException.' ); } public function testLineChartOptionsPropertyHighlightSize() { $options = new ezcGraphLineChartOptions(); $this->assertSame( 14, $options->highlightSize, 'Wrong default value for property highlightSize in class ezcGraphLineChartOptions' ); $options->highlightSize = 20; $this->assertSame( 20, $options->highlightSize, 'Setting property value did not work for property highlightSize in class ezcGraphLineChartOptions' ); try { $options->highlightSize = false; } catch ( ezcBaseValueException $e ) { return true; } $this->fail( 'Expected ezcBaseValueException.' ); } public function testLineChartOptionsPropertyHighlightLines() { $options = new ezcGraphLineChartOptions(); $this->assertSame( false, $options->highlightLines, 'Wrong default value for property highlightLines in class ezcGraphLineChartOptions' ); $options->highlightLines = true; $this->assertSame( true, $options->highlightLines, 'Setting property value did not work for property highlightLines in class ezcGraphLineChartOptions' ); try { $options->highlightLines = 42; } catch ( ezcBaseValueException $e ) { return true; } $this->fail( 'Expected ezcBaseValueException.' ); } public function testElementGenerationLegend() { $chart = new ezcGraphLineChart(); $this->addSampleData( $chart ); $chart->render( 500, 200 ); $legend = $this->getAttribute( $chart->legend, 'labels' ); $this->assertEquals( 3, count( $legend ), 'Count of legends items should be <3>' ); $this->assertEquals( 'sampleData', $legend[0]['label'], 'Label of first legend item should be .' ); $this->assertEquals( 'Even more data', $legend[2]['label'], 'Label of first legend item should be .' ); $this->assertEquals( ezcGraphColor::fromHex( '#3465A4' ), $legend[0]['color'], 'Color for first label is wrong.' ); $this->assertEquals( ezcGraphColor::fromHex( '#4E9A06' ), $legend[1]['color'], 'Color for second label is wrong.' ); } public function testInvalidDisplayType() { $chart = new ezcGraphLineChart(); $chart->data['sampleData'] = new ezcGraphArrayDataSet( array( 'sample 1' => 234, 'sample 2' => 21, 'sample 3' => 324, 'sample 4' => 120, 'sample 5' => 1 ) ); $chart->data['sampleData']->displayType = ezcGraph::PIE; try { $chart->render( 500, 200 ); } catch ( ezcGraphInvalidDisplayTypeException $e ) { return true; } $this->fail( 'Expected ezcGraphInvalidDisplayTypeException.' ); } public function testRenderChartLines() { $chart = new ezcGraphLineChart(); $chart->data['sampleData'] = new ezcGraphArrayDataSet( array( 'sample 1' => 234, 'sample 2' => 21, 'sample 3' => 324, 'sample 4' => 120, 'sample 5' => 1 ) ); $chart->data['sampleData']->color = '#CC0000'; $chart->data['sampleData']->symbol = ezcGraph::DIAMOND; $mockedRenderer = $this->getMock( 'ezcGraphRenderer2d', array( 'drawDataLine', ) ); $mockedRenderer ->expects( $this->at( 0 ) ) ->method( 'drawDataLine' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData', 'sample 1' ) ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( new ezcGraphCoordinate( .0, .415 ), .05 ), $this->equalTo( new ezcGraphCoordinate( .0, .415 ), .05 ), $this->equalTo( 0 ), $this->equalTo( 1 ), $this->equalTo( ezcGraph::DIAMOND ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( null ) ); $mockedRenderer ->expects( $this->at( 1 ) ) ->method( 'drawDataLine' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData', 'sample 2' ) ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( new ezcGraphCoordinate( .0, .415 ), .05 ), $this->equalTo( new ezcGraphCoordinate( .25, .95 ), .05 ), $this->equalTo( 0 ), $this->equalTo( 1 ), $this->equalTo( ezcGraph::DIAMOND ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( null ) ); $mockedRenderer ->expects( $this->at( 2 ) ) ->method( 'drawDataLine' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData', 'sample 3' ) ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( new ezcGraphCoordinate( .25, .95 ), .05 ), $this->equalTo( new ezcGraphCoordinate( .5, .2 ), .05 ), $this->equalTo( 0 ), $this->equalTo( 1 ), $this->equalTo( ezcGraph::DIAMOND ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( null ) ); $mockedRenderer ->expects( $this->at( 3 ) ) ->method( 'drawDataLine' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData', 'sample 4' ) ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( new ezcGraphCoordinate( .5, .2 ), .05 ), $this->equalTo( new ezcGraphCoordinate( .75, .7 ), .05 ), $this->equalTo( 0 ), $this->equalTo( 1 ), $this->equalTo( ezcGraph::DIAMOND ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( null ) ); $mockedRenderer ->expects( $this->at( 4 ) ) ->method( 'drawDataLine' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData', 'sample 5' ) ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( new ezcGraphCoordinate( .75, .7 ), .05 ), $this->equalTo( new ezcGraphCoordinate( 1., .9975 ), .05 ), $this->equalTo( 0 ), $this->equalTo( 1 ), $this->equalTo( ezcGraph::DIAMOND ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( null ) ); $chart->renderer = $mockedRenderer; $chart->render( 500, 200 ); } public function testRenderChartMixedBarsAndLines() { $chart = new ezcGraphLineChart(); $chart->data['sampleData'] = new ezcGraphArrayDataSet( array( 'sample 1' => 234, 'sample 2' => 21, 'sample 3' => 324, 'sample 4' => 120, 'sample 5' => 1 ) ); $chart->data['sampleData']->color = '#CC0000'; $chart->data['sampleData']->displayType = ezcGraph::BAR; $chart->data['sampleData2'] = new ezcGraphArrayDataSet( array( 'sample 1' => 234, 'sample 2' => 21, 'sample 3' => 324, 'sample 4' => 120, 'sample 5' => 1 ) ); $chart->data['sampleData2']->color = '#CC0000'; $chart->data['sampleData2']->symbol = ezcGraph::DIAMOND; $mockedRenderer = $this->getMock( 'ezcGraphRenderer2d', array( 'drawBar', 'drawDataLine', ) ); $mockedRenderer ->expects( $this->at( 0 ) ) ->method( 'drawBar' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData', 'sample 1' ) ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( new ezcGraphCoordinate( .0, .415 ), .05 ), $this->equalTo( 80., 1. ), $this->equalTo( 0 ), $this->equalTo( 1 ) ); $mockedRenderer ->expects( $this->at( 4 ) ) ->method( 'drawBar' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData', 'sample 5' ) ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( new ezcGraphCoordinate( 1., .9975 ), .05 ), $this->equalTo( 80., 1. ), $this->equalTo( 0 ), $this->equalTo( 1 ) ); $mockedRenderer ->expects( $this->at( 5 ) ) ->method( 'drawDataLine' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData2', 'sample 1' ) ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( new ezcGraphCoordinate( .0, .415 ), .05 ), $this->equalTo( new ezcGraphCoordinate( .0, .415 ), .05 ), $this->equalTo( 0 ), $this->equalTo( 1 ), $this->equalTo( ezcGraph::DIAMOND ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( null ) ); $mockedRenderer ->expects( $this->at( 9 ) ) ->method( 'drawDataLine' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData2', 'sample 5' ) ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( new ezcGraphCoordinate( .75, .7 ), .05 ), $this->equalTo( new ezcGraphCoordinate( 1., .9975 ), .05 ), $this->equalTo( 0 ), $this->equalTo( 1 ), $this->equalTo( ezcGraph::DIAMOND ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( null ) ); $chart->renderer = $mockedRenderer; $chart->render( 500, 200 ); } public function testRenderChartBars() { $chart = new ezcGraphLineChart(); $chart->data['sampleData'] = new ezcGraphArrayDataSet( array( 'sample 1' => 234, 'sample 2' => 21, 'sample 3' => 324, 'sample 4' => 120, 'sample 5' => 1 ) ); $chart->data['sampleData']->color = '#CC0000'; $chart->data['sampleData']->symbol = ezcGraph::DIAMOND; $chart->data['sampleData']->displayType = ezcGraph::BAR; $mockedRenderer = $this->getMock( 'ezcGraphRenderer2d', array( 'drawBar', ) ); $mockedRenderer ->expects( $this->at( 0 ) ) ->method( 'drawBar' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData', 'sample 1' ) ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( new ezcGraphCoordinate( .0, .415 ), .05 ), $this->equalTo( 80., 1. ), $this->equalTo( 0 ), $this->equalTo( 1 ) ); $mockedRenderer ->expects( $this->at( 1 ) ) ->method( 'drawBar' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData', 'sample 2' ) ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( new ezcGraphCoordinate( .25, .95 ), .05 ), $this->equalTo( 80., 1. ), $this->equalTo( 0 ), $this->equalTo( 1 ) ); $mockedRenderer ->expects( $this->at( 2 ) ) ->method( 'drawBar' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData', 'sample 3' ) ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( new ezcGraphCoordinate( .5, .2 ), .05 ), $this->equalTo( 80., 1. ), $this->equalTo( 0 ), $this->equalTo( 1 ) ); $mockedRenderer ->expects( $this->at( 3 ) ) ->method( 'drawBar' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData', 'sample 4' ) ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( new ezcGraphCoordinate( .75, .7 ), .05 ), $this->equalTo( 80., 1. ), $this->equalTo( 0 ), $this->equalTo( 1 ) ); $mockedRenderer ->expects( $this->at( 4 ) ) ->method( 'drawBar' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData', 'sample 5' ) ), $this->equalTo( ezcGraphColor::fromHex( '#CC0000' ) ), $this->equalTo( new ezcGraphCoordinate( 1., .9975 ), .05 ), $this->equalTo( 80., 1. ), $this->equalTo( 0 ), $this->equalTo( 1 ) ); $chart->renderer = $mockedRenderer; $chart->render( 500, 200 ); } public function testRenderChartFilledLines() { $chart = new ezcGraphLineChart(); $chart->data['sampleData'] = new ezcGraphArrayDataSet( array( 'sample 1' => 234, 'sample 2' => 21, 'sample 3' => -46, 'sample 4' => 120, 'sample 5' => 100 ) ); $chart->palette = new ezcGraphPaletteBlack(); $chart->options->fillLines = 100; $mockedRenderer = $this->getMock( 'ezcGraphRenderer2d', array( 'drawDataLine', ) ); $mockedRenderer ->expects( $this->at( 0 ) ) ->method( 'drawDataLine' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData', 'sample 1' ) ), $this->equalTo( ezcGraphColor::fromHex( '#3465A4' ) ), $this->equalTo( new ezcGraphCoordinate( .0, .165 ), .05 ), $this->equalTo( new ezcGraphCoordinate( .0, .165 ), .05 ), $this->equalTo( 0 ), $this->equalTo( 1 ), $this->equalTo( ezcGraph::NO_SYMBOL ), $this->equalTo( ezcGraphColor::fromHex( '#3465A4' ) ), $this->equalTo( ezcGraphColor::fromHex( '#3465A464' ) ) ); $mockedRenderer ->expects( $this->at( 1 ) ) ->method( 'drawDataLine' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData', 'sample 2' ) ), $this->equalTo( ezcGraphColor::fromHex( '#3465A4' ) ), $this->equalTo( new ezcGraphCoordinate( .0, .165 ), .05 ), $this->equalTo( new ezcGraphCoordinate( .25, .6975 ), .05 ), $this->equalTo( 0 ), $this->equalTo( 1 ), $this->equalTo( ezcGraph::NO_SYMBOL ), $this->equalTo( ezcGraphColor::fromHex( '#3465A4' ) ), $this->equalTo( ezcGraphColor::fromHex( '#3465A464' ) ) ); $mockedRenderer ->expects( $this->at( 4 ) ) ->method( 'drawDataLine' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData', 'sample 5' ) ), $this->equalTo( ezcGraphColor::fromHex( '#3465A4' ) ), $this->equalTo( new ezcGraphCoordinate( .75, .45 ), .05 ), $this->equalTo( new ezcGraphCoordinate( 1., .5 ), .05 ), $this->equalTo( 0 ), $this->equalTo( 1 ), $this->equalTo( ezcGraph::NO_SYMBOL ), $this->equalTo( ezcGraphColor::fromHex( '#3465A4' ) ), $this->equalTo( ezcGraphColor::fromHex( '#3465A464' ) ) ); $chart->renderer = $mockedRenderer; $chart->render( 500, 200 ); } public function testRenderChartSymbols() { $chart = new ezcGraphLineChart(); $chart->palette = new ezcGraphPaletteBlack(); $chart->data['sampleData'] = new ezcGraphArrayDataSet( array( 'sample 1' => 234, 'sample 2' => 21, 'sample 3' => 324, 'sample 4' => 120, 'sample 5' => 1) ); $chart->data['sampleData']->symbol = ezcGraph::DIAMOND; $chart->data['sampleData']->symbol['sample 3'] = ezcGraph::CIRCLE; $mockedRenderer = $this->getMock( 'ezcGraphRenderer2d', array( 'drawDataLine', ) ); $mockedRenderer ->expects( $this->at( 0 ) ) ->method( 'drawDataLine' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData', 'sample 1' ) ), $this->equalTo( ezcGraphColor::fromHex( '#729FCF' ) ), $this->equalTo( new ezcGraphCoordinate( .0, .415 ), .05 ), $this->equalTo( new ezcGraphCoordinate( .0, .415 ), .05 ), $this->equalTo( 0 ), $this->equalTo( 1 ), $this->equalTo( ezcGraph::DIAMOND ), $this->equalTo( ezcGraphColor::fromHex( '#729FCF' ) ), $this->equalTo( null ) ); $mockedRenderer ->expects( $this->at( 2 ) ) ->method( 'drawDataLine' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData', 'sample 3' ) ), $this->equalTo( ezcGraphColor::fromHex( '#729FCF' ) ), $this->equalTo( new ezcGraphCoordinate( .25, .9475 ), .05 ), $this->equalTo( new ezcGraphCoordinate( .5, .19 ), .05 ), $this->equalTo( 0 ), $this->equalTo( 1 ), $this->equalTo( ezcGraph::CIRCLE ), $this->equalTo( ezcGraphColor::fromHex( '#729FCF' ) ), $this->equalTo( null ) ); $mockedRenderer ->expects( $this->at( 4 ) ) ->method( 'drawDataLine' ) ->with( $this->equalTo( new ezcGraphBoundings( 140., 20., 460., 180. ), 1. ), $this->equalTo( new ezcGraphContext( 'sampleData', 'sample 5' ) ), $this->equalTo( ezcGraphColor::fromHex( '#729FCF' ) ), $this->equalTo( new ezcGraphCoordinate( .75, .7 ), .05 ), $this->equalTo( new ezcGraphCoordinate( 1., .9975 ), .05 ), $this->equalTo( 0 ), $this->equalTo( 1 ), $this->equalTo( ezcGraph::DIAMOND ), $this->equalTo( ezcGraphColor::fromHex( '#729FCF' ) ), $this->equalTo( null ) ); $chart->renderer = $mockedRenderer; $chart->render( 500, 200 ); } public function testLineChartOptionsPropertyXAxis() { $options = new ezcGraphLineChart(); $this->assertSame( 'ezcGraphChartElementLabeledAxis', get_class( $options->xAxis ), 'Wrong default value for property xAxis in class ezcGraphLineChart' ); $options->xAxis = $axis = new ezcGraphChartElementDateAxis(); $this->assertSame( $axis, $options->xAxis, 'Setting property value did not work for property xAxis in class ezcGraphLineChart' ); try { $options->xAxis = false; } catch ( ezcBaseValueException $e ) { return true; } $this->fail( 'Expected ezcBaseValueException.' ); } public function testLineChartOptionsPropertyYAxis() { $options = new ezcGraphLineChart(); $this->assertSame( 'ezcGraphChartElementNumericAxis', get_class( $options->yAxis ), 'Wrong default value for property yAxis in class ezcGraphLineChart' ); $options->yAxis = $axis = new ezcGraphChartElementDateAxis(); $this->assertSame( $axis, $options->yAxis, 'Setting property value did not work for property yAxis in class ezcGraphLineChart' ); try { $options->yAxis = false; } catch ( ezcBaseValueException $e ) { return true; } $this->fail( 'Expected ezcBaseValueException.' ); } public function testLineChartOptionsPropertyLegend() { $chart = new ezcGraphLineChart(); $chart->legend = false; try { $chart->legend = 12; } catch ( ezcBaseValueException $e ) { return true; } $this->fail( 'Expected ezcBaseValueException.' ); } } ?>