forked from laravel/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSupportTappableTest.php
More file actions
47 lines (36 loc) · 878 Bytes
/
SupportTappableTest.php
File metadata and controls
47 lines (36 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
namespace Illuminate\Tests\Support;
use Illuminate\Support\Traits\Tappable;
use PHPUnit\Framework\TestCase;
class SupportTappableTest extends TestCase
{
public function testTappableClassWithCallback()
{
$name = TappableClass::make()->tap(function ($tappable) {
$tappable->setName('MyName');
})->getName();
$this->assertSame('MyName', $name);
}
public function testTappableClassWithoutCallback()
{
$name = TappableClass::make()->tap()->setName('MyName')->getName();
$this->assertSame('MyName', $name);
}
}
class TappableClass
{
use Tappable;
private $name;
public static function make()
{
return new static;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
}