Skip to content

Commit

Permalink
Updating testing (#20)
Browse files Browse the repository at this point in the history
* Bringing dev up to speed (#19)

* Bug fix (#16)

* Bug fix

Bug fix for:
specialtactics/laravel-api-boilerplate#26

* Update RestfulTransformer.php

* Update RestfulTransformer.php

StyleCI ?!

* Add test for situation where model has a PK of "id"

* Add tests for empty attributes cast to array

* Some updates for laravel 6 (#18)

* Updates for Laravel 6

* Remove PHP 7.1 from Travis (no longer supported)

* Bump illuminate/support dep version

* Bump orchestra testbench version for laravel 6

* Allow phpunit 8

* Replace str_ helper

* replace assertEquals with assertEqualsWithDelta when using delta

* Add phpunit result cache to gitignore

* Update travis config

* Different config try

* Cater testing for laravel 5.8 as well

* Commit a test to run first and eat up bootstrap time
  • Loading branch information
specialtactics authored Oct 8, 2019
1 parent 8162e3b commit c27cc28
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions test/tests/A/FirstTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

namespace Specialtactics\L5Api\Tests\A;

use Specialtactics\L5Api\Tests\BaseTestCase;

class FirstTest extends BaseTestCase
{
/**
* @testdox Consumes testing bootstrap time
* @test
*/
public function testBootstrapTime()
{
$this->assertTrue(true);
}
}

0 comments on commit c27cc28

Please sign in to comment.