Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Generated on May 19, 2024 via composer

codeception/phpunit-wrapper 6.0.22

PHPUnit classes used by Codeception
Package summary
Share
2
issues
2
high severity
meta
2
2
licenses
21
BSD-3-Clause
10
MIT
Package created
18 Feb 2018
Version published
24 May 2022
Maintainers
2
Total deps
31
Direct deps
4
License
MIT

Issues

2

2 high severity issues

high
via: phpunit/php-code-coverage@5.3.2 & others
via: phpunit/phpunit@6.5.12
Collapse
Expand

Licenses

BSD 3-Clause "New" or "Revised" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
21 Packages, Including:
phar-io/manifest@1.0.1
phar-io/version@1.0.1
phpunit/php-code-coverage@5.3.2
phpunit/php-file-iterator@1.4.5
phpunit/php-text-template@1.2.1
phpunit/php-timer@1.0.9
phpunit/php-token-stream@2.0.2
phpunit/phpunit@6.5.12
phpunit/phpunit-mock-objects@5.0.10
sebastian/code-unit-reverse-lookup@1.0.3
sebastian/comparator@2.1.3
sebastian/diff@2.0.1
sebastian/environment@3.1.0
sebastian/exporter@3.1.6
sebastian/global-state@2.0.0
sebastian/object-enumerator@3.0.5
sebastian/object-reflector@1.1.3
sebastian/recursion-context@3.0.2
sebastian/resource-operations@1.0.0
sebastian/version@2.0.1
theseer/tokenizer@1.2.3

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
10 Packages, Including:
codeception/phpunit-wrapper@6.0.22
doctrine/deprecations@1.1.3
doctrine/instantiator@1.5.0
myclabs/deep-copy@1.11.1
phpdocumentor/reflection-common@2.2.0
phpdocumentor/reflection-docblock@5.4.0
phpdocumentor/type-resolver@1.8.2
phpspec/prophecy@v1.10.3
phpstan/phpdoc-parser@1.29.0
webmozart/assert@1.11.0
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

4
All Dependencies CSV
β“˜ This is a list of codeception/phpunit-wrapper 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
phpunit/php-code-coverage5.3.2421.63 kBBSD-3-Clause
prod dev
1
phpunit/phpunit6.5.12483.15 kBBSD-3-Clause
prod dev
2
sebastian/comparator2.1.340.51 kBBSD-3-Clause
prod dev
sebastian/diff2.0.131.89 kBBSD-3-Clause
prod dev

Visualizations

Frequently Asked Questions

What does codeception/phpunit-wrapper do?

As an essential component of the Codeception testing framework, the codeception/phpunit-wrapper package plays a vital role in running and managing tests. This utility package extends or redefines PHPUnit classes that aren't fully compatible with Codeception's requirements. Therefore, the wrapper serves as a bridge, enabling seamless integration between Codeception and PHPUnit. Furthermore, the way it maintains its versions is quite systematic, implying that they follow the significant releases of PHPUnit.

How do you use codeception/phpunit-wrapper?

Installation of codeception/phpunit-wrapper is fairly straightforward. It's a Composer package, which means installation is handled by simply running a Composer command. However, detailed usage or implementation wasn't provided on the provided readme. If the package follows typical Codeception usage conventions, the simple installation command would potentially look like this:

composer require codeception/phpunit-wrapper

After installation, the PHPUnit classes can be utilized within your Codeception tests. Though specifics may vary, the basic usage would appear similar to this:

<?php
use PHPUnit\Framework\Assert as PHPUnit;

$scenario->group('important');
$scenario->incomplete('This test is incomplete');
PHPUnit::assertEmpty(array());

Please note, you must first verify the exact usage from the documentation.

Where are the codeception/phpunit-wrapper docs?

Due to the fact that this readme lacks comprehensive documentation, users interested in the codeception/phpunit-wrapper package should refer to the Codeception and PHPUnit official documentations. There, they may discover useful insights on how this package interactively works with the rest of the Codeception testing framework. Unfortunately, no dedicated documentation for codeception/phpunit-wrapper was found at the given GitHub repository. This enforces the importance of having familiarity with both Codeception and PHPUnit to effectively use this package.