SchemaCompatibilityChecker example

/** * The system under test. */
  protected SchemaCompatibilityChecker $checker;

  /** * {@inheritdoc} */
  protected function setUp(): void {
    parent::setUp();
    $this->checker = new SchemaCompatibilityChecker();
  }

  /** * @covers ::isCompatible * @dataProvider dataProviderIsCompatible */
  public function testIsCompatible(array $first_schema, array $second_schema, bool $expected): void {
    try {
      $this->checker->isCompatible($first_schema$second_schema);
      $is_compatible = TRUE;
    }
    
Home | Imprint | This part of the site doesn't use cookies.