Skip to content
Merged
Show file tree
Hide file tree
Changes from 36 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
8f76f20
chore: remove redundant logic.
Dec 15, 2023
aaf4e67
test: add Nova test generator test case.
Dec 15, 2023
76dba4c
test: separate tests for Nova Resources and Nova tests.
Dec 15, 2023
1605125
Merge branch '42-extend-nova-resource-generator' into 49-add-tests
Dec 15, 2023
dfb9d07
test: add tests for Nova Resource.
Dec 15, 2023
ac6845c
test: add fixture.
Dec 15, 2023
c20b26f
test: add tests for controller generator.
Dec 16, 2023
fa2c9f7
Merge branch 'master' into 49-add-tests
Dec 20, 2023
5fa7683
chore: remove useless methods.
Dec 20, 2023
0443851
test: correct test functions.
Jan 18, 2024
2933b28
Merge branch 'master' into 49-add-tests
Jan 18, 2024
193ab1b
test: correct tests.
Jan 18, 2024
b3916c3
chore: correct tests.
Jan 25, 2024
543abdf
chore: remove redundant logic.
Jan 25, 2024
b4204ff
chore: rewrite test logic.
Jan 25, 2024
187cdc4
test: correct test mocks.
Feb 2, 2024
747fc31
test: correct fixture path extracting.
Feb 2, 2024
ecfdccd
chore: merge with dev
aizlee Oct 1, 2024
9745d29
test: use the Event facade for events checking
aizlee Oct 3, 2024
2163b15
feat: added doctrine/dbal to composer.json
aizlee Oct 7, 2024
866db1e
chore: merge with master
aizlee Oct 18, 2024
51653d0
chore: minor fixes
aizlee Oct 18, 2024
5e93ac5
refactor: tests
aizlee Oct 28, 2024
7a4ee58
chore: remove unsed rollbackToDefaultBasePath
aizlee Oct 29, 2024
75d27c6
refactor: mockNovaResourceTestGenerator
aizlee Nov 12, 2024
1274250
chore: updated packages versions
aizlee Nov 12, 2024
ecb4217
chore: merge with master
aizlee Nov 12, 2024
e160b0e
chore: updated packages versions
aizlee Nov 12, 2024
e789a97
chore: remove debug
aizlee Nov 12, 2024
10c9bab
feat: implemneted assertEventPushedChain
aizlee Nov 12, 2024
80d7b2c
feat: implemented assertExceptionThrowed
aizlee Nov 12, 2024
61b547a
fix: remove reflection from NovaResourceGeneratorTest
aizlee Nov 15, 2024
749a6e7
chore: update laravel to v11.31
aizlee Nov 15, 2024
8384c61
chore: composer update
aizlee Nov 15, 2024
3f38dbd
fix:
aizlee Nov 18, 2024
a0c694c
Update src/Generators/AbstractTestsGenerator.php
DenTray Nov 18, 2024
30d2f74
Apply suggestions from code review
DenTray Nov 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea
vendor/
.phpunit.result.cache
.phpunit.cache
19 changes: 11 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,19 @@
],
"require": {
"php": "^8.3",
"laravel/framework": "^11.21",
"laravel/framework": "^11.31.0",
"ronasit/laravel-helpers": "^3.0.1-beta",
"laravel/legacy-factories": ">=1.3.0",
"ext-json": "*"
"laravel/legacy-factories": ">=1.4.0",
"ext-json": "*",
"doctrine/dbal": "^4.2"
},
"require-dev": {
"fakerphp/faker": "^1.23.1",
"fakerphp/faker": "^1.24.0",
"mockery/mockery": "^1.6.12",
"phpunit/phpunit": "^10.5.30",
"phpunit/phpunit": "^10.5.38",
"php-coveralls/php-coveralls": "^2.7",
"orchestra/testbench": "^9.3",
"mikey179/vfsstream": "^1.6.11",
"orchestra/testbench": "^9.5.2",
"mikey179/vfsstream": "^1.6.12",
"php-mock/php-mock": "^2.5"
},
"autoload": {
Expand All @@ -36,7 +37,9 @@
"autoload-dev": {
"psr-4": {
"RonasIT\\Support\\Tests\\": "tests/",
"RonasIT\\Support\\Tests\\Support\\": "tests/Support/"
"RonasIT\\Support\\Tests\\Support\\": "tests/Support/",
"App\\Models\\": "tests/Support/Models/",
"App\\Nova\\": "tests/Support/Nova/"
},
"files": [
"tests/TestCase.php"
Expand Down
Loading
Loading