1. Go to this page and download the library: Download webforge/object-asserter library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
public function testThatMyComposerJsonIsCorrect_withPhpunit(): void
{
$composerObject = ... // same as above
self::assertIsObject($composerObject);
self::assertObjectHasAttribute('name', $composerObject);
self::assertIsString($composerObject->name);
self::assertStringContainsString('object-asserter', $composerObject->name);
self::assertObjectHasAttribute('t->{'autoload-dev'});
self::assertIsArray($composerObject->{'autoload-dev'}->{'psr-4'});
self::assertCount(1, $composerObject->{'autoload-dev'}->{'psr-4'});
}
public function testThatMyComposerJsonIsCorrect_withObjectAsserter(): void
{
$composerObject = $this->getComposerJsonDecoded();
$this->assertThatObject($composerObject)
->property('name')->contains('object-asserter')->end()
->property('jectAsserter\ObjectAsserter
{
return new ObjectAsserter($object);
}
$example = [
'level1'=>[
'level2'=>true
]
]
$this->assertThatArray($example)
->key('level1') // now we do assertions on ['level2'=>true]
->end() // now we are back at the root: ['level1'=>['level2'=>true]]
$this->assertThatObject($composerObject)
->property('authors')
->tap(function(array $authors) {
// do whatever you like now, do phpunit assertions, or normalize, or, or
self::assertArrayHasKey(0, $authors);
})
->key(0) // is still in context of the property authors
$this->assertThatObject($pbMeta = $binary->getMediaMetadata('focals.v1'))
->property('faces')->isArray()->length(2) // this might change and is okay, if algorithm improves
->key(0)
->property('confidence')->is(Matchers::greaterThan(0.4))->end()
->end()
->key(1)
->property('confidence')->is(Matchers::greaterThan(0.4))->end()
->end()
;
$this->assertJsonResponseContent(400, $this->client)
->property('detail', 'Nicht bestellbar: Die minimale Anzahl für dieses Format sind 13 Doppelseiten')->end()
->property('suggestion', 'Füge mehr Einträge hinzu.')->end();
$this->assertJsonResponseContent(403, $this->client)
->property('type', 'http://ps-webforge.net/rfc/redirect')->end()
->property('detail', Matchers::containsString('ist abgeschlossen'))->end()
->property('href', Matchers::containsString('photobook/' . $photobook->getId() . '/print'))->end();
$ phpunit docs/examples/Example.php
PHPUnit 9.5.6 by Sebastian Bergmann and contributors.
Runtime: PHP 7.4.15
Configuration: /app/phpunit.xml
.F 2 / 2 (100%)
Time: 00:00.003, Memory: 6.00 MB
There was 1 failure:
1) Example::testThatMyComposerJsonIsCorrect_withPhpunit
Failed asserting that an array has the key 'amcrest/hamcrest-php'.
/app/docs/examples/Example.php:23
$ phpunit docs/examples/Example.php
PHPUnit 9.5.6 by Sebastian Bergmann and contributors.
Runtime: PHP 7.4.15
Configuration: /app/phpunit.xml
FE 2 / 2 (100%)
Time: 00:00.005, Memory: 6.00 MB
There was 1 error:
1) Example::testThatMyComposerJsonIsCorrect_withObjectAsserter
Hamcrest\AssertionError: $root.
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.