get_fixture_path( 'empty-steps.json' ) ); $steps = $schema->get_steps(); $this->assertIsArray( $steps ); $this->assertCount( 0, $steps ); } /** * Test getting a step from a schema. * * @return void */ public function test_get_step() { $name = 'installPlugin'; $schema = new JsonSchema( $this->get_fixture_path( 'with-install-plugin-step.json' ) ); $steps = $schema->get_step( $name ); $this->assertIsArray( $steps ); foreach ( $steps as $step ) { $this->assertEquals( $name, $step->step ); } } /** * Test getting a step from a schema that does not exist. * * @return void */ public function test_it_throws_invalid_argument_exception_with_invalid_json() { $this->expectException( \InvalidArgumentException::class ); new JsonSchema( $this->get_fixture_path( 'invalid-json.json' ) ); } }