Skip to content

Commit

Permalink
Add failing test to verify github actions workflow sends emails
Browse files Browse the repository at this point in the history
  • Loading branch information
manicki committed Sep 12, 2024
1 parent dc3b2b9 commit 463fe53
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tests/unit/FailingTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

namespace Diff\Tests;

use PHPUnit\Framework\TestCase;

/**
* @license BSD-3-Clause
*/
class FailingTest extends TestCase {

public function testTrueIsNotFalse() {
$this->assertTrue( false );
}

}

0 comments on commit 463fe53

Please sign in to comment.