checkBackend( true ); } /** * Sets up the fixture, for example, opens a network connection. * This method is called before a test is executed. */ protected function setUp() { parent::setUp(); if ( !self::$hasRestbase ) { $this->markTestSkipped( "Can not connect to Restbase Math interface." ); } } protected function tearDown() { parent::tearDown(); } /** * @expectedException ValueFormatters\Exceptions\MismatchingDataValueTypeException */ public function testNotStringValue() { $validator = new MathValidator(); $validator->validate( new NumberValue( 0 ) ); } /** * @expectedException ValueFormatters\Exceptions\MismatchingDataValueTypeException */ public function testNullValue() { $validator = new MathValidator(); $validator->validate( null ); } public function testValidInput() { $validator = new MathValidator(); $result = $validator->validate( new StringValue( self::VADLID_TEX ) ); // not supported by jenkins php version // $this->assertType( \ValueValidators\Result::class, $result ); $this->assertTrue( $result->isValid() ); } public function testInvalidInput() { $validator = new MathValidator(); $result = $validator->validate( new StringValue( self::INVADLID_TEX ) ); // not supported by jenkins php version // $this->assertType( \ValueValidators\Result::class, $result ); $this->assertFalse( $result->isValid() ); } }