forked from maize-tech/laravel-prunable-fields
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1f35a5e
commit 63f8d4e
Showing
5 changed files
with
44 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"version":"pest_2.35.1","defects":{"P\\Tests\\MassPrunableFieldsTest::__pest_evaluable_should_update_mass_prunable_models#(Closure) \/ (Closure)":8,"P\\Tests\\MassPrunableFieldsTest::__pest_evaluable_should_update_mass_prunable_models#('user_with_mass_prunable_fields') #2":8,"P\\Tests\\MassPrunableFieldsTest::__pest_evaluable_should_update_mass_prunable_models#('user_with_mass_prunable_fields') #1":8,"P\\Tests\\MassPrunableFieldsTest::__pest_evaluable_should_update_mass_prunable_models#('user_with_mass_prunable_fields')":8,"P\\Tests\\MassPrunableFieldsTest::__pest_evaluable_should_update_mass_prunable_models#('user_without_mass_prunable_fields')":8},"times":{"P\\Tests\\PrunableFieldsTest::__pest_evaluable_should_fire_model_updated_events#(Closure)":0.01,"P\\Tests\\PrunableFieldsTest::__pest_evaluable_should_not_update_non_prunable_models#(Closure)":0.002,"P\\Tests\\PrunableFieldsTest::__pest_evaluable_should_update_prunable_models#(Closure)":0.005,"P\\Tests\\PrunableFieldsTest::__pest_evaluable_should_fire_ModelsFieldsPruned_event_with_prunable_model#(Closure)":0.01,"P\\Tests\\PrunableFieldsTest::__pest_evaluable_should_allow_the_prunable_models_to_be_overridden_at_runtime#(Closure)":0.025,"P\\Tests\\PrunableFieldsTest::__pest_evaluable_should_call_the_pruningFields_method#(Closure)":0.01,"P\\Tests\\PruneFieldsCommandTest::__pest_evaluable_should_print_the_amount_of_pruned_records#(Closure)":0.012,"P\\Tests\\PruneFieldsCommandTest::__pest_evaluable_should_print_no_records_have_been_pruned#(Closure)":0.001,"P\\Tests\\PruneFieldsCommandTest::__pest_evaluable_should_print_the_amount_of_prunable_records#(Closure)":0.003,"P\\Tests\\PruneFieldsCommandTest::__pest_evaluable_should_print_no_models_found_with_empty_list":0.001,"P\\Tests\\MassPrunableFieldsTest::__pest_evaluable_should_update_mass_prunable_models#(Closure) \/ (Closure)":0.009,"P\\Tests\\MassPrunableFieldsTest::__pest_evaluable_should_fire_ModelsFieldsPruned_event_with_mass_prunable_model#(Closure)":0.021,"P\\Tests\\MassPrunableFieldsTest::__pest_evaluable_should_not_fire_model_updated_events#(Closure)":0.002,"P\\Tests\\MassPrunableFieldsTest::__pest_evaluable_should_not_update_non_prunable_models#(Closure)":0.16,"P\\Tests\\MassPrunableFieldsTest::__pest_evaluable_should_update_mass_prunable_models#(Closure)":0.002,"P\\Tests\\MassPrunableFieldsTest::__pest_evaluable_should_update_mass_prunable_models#('user_with_mass_prunable_fields') #2":0.005,"P\\Tests\\MassPrunableFieldsTest::__pest_evaluable_should_update_mass_prunable_models#('user_with_mass_prunable_fields') #1":0.001,"P\\Tests\\MassPrunableFieldsTest::__pest_evaluable_should_update_mass_prunable_models#('user_with_mass_prunable_fields')":0.006,"P\\Tests\\MassPrunableFieldsTest::__pest_evaluable_should_update_mass_prunable_models#('user_without_mass_prunable_fields')":0,"P\\Tests\\MassPrunableFieldsTest::__pest_evaluable_should_update_mass_prunable_models#(Closure) #2":0.002,"P\\Tests\\MassPrunableFieldsTest::__pest_evaluable_should_update_mass_prunable_models#(Closure) #1":0.001}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" | ||
backupGlobals="false" | ||
backupStaticAttributes="false" | ||
bootstrap="vendor/autoload.php" | ||
colors="true" | ||
convertErrorsToExceptions="true" | ||
convertNoticesToExceptions="true" | ||
convertWarningsToExceptions="true" | ||
processIsolation="false" | ||
stopOnFailure="false" | ||
executionOrder="random" | ||
failOnWarning="true" | ||
failOnRisky="true" | ||
failOnEmptyTestSuite="true" | ||
beStrictAboutOutputDuringTests="true" | ||
verbose="true" | ||
> | ||
<testsuites> | ||
<testsuite name="Maize Test Suite"> | ||
<directory>tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<coverage> | ||
<include> | ||
<directory suffix=".php">./src</directory> | ||
</include> | ||
<report> | ||
<html outputDirectory="build/coverage"/> | ||
<text outputFile="build/coverage.txt"/> | ||
<clover outputFile="build/logs/clover.xml"/> | ||
</report> | ||
</coverage> | ||
<logging> | ||
<junit outputFile="build/report.junit.xml"/> | ||
</logging> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" executionOrder="random" failOnWarning="true" failOnRisky="true" failOnEmptyTestSuite="true" beStrictAboutOutputDuringTests="true" cacheDirectory=".phpunit.cache" backupStaticProperties="false"> | ||
<testsuites> | ||
<testsuite name="Maize Test Suite"> | ||
<directory>tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<coverage> | ||
<report> | ||
<html outputDirectory="build/coverage"/> | ||
<text outputFile="build/coverage.txt"/> | ||
<clover outputFile="build/logs/clover.xml"/> | ||
</report> | ||
</coverage> | ||
<logging> | ||
<junit outputFile="build/report.junit.xml"/> | ||
</logging> | ||
<source> | ||
<include> | ||
<directory suffix=".php">./src</directory> | ||
</include> | ||
</source> | ||
</phpunit> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters