You've already forked php-flasher
mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-04-05 12:32:55 +01:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a0e4189fec |
@@ -24,7 +24,7 @@ class ConfigurationTest extends TestCase
|
||||
),
|
||||
);
|
||||
|
||||
$this->assertSame($expected, $config);
|
||||
$this->assertEquals($expected, $config);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -32,13 +32,13 @@ class FlasherToastrExtensionTest extends TestCase
|
||||
$calls = $flasher->getMethodCalls();
|
||||
|
||||
$this->assertCount(2, $calls);
|
||||
$this->assertSame('addFactory', $calls[0][0]);
|
||||
$this->assertSame('template', $calls[0][1][0]);
|
||||
$this->assertSame('flasher.notification_factory', (string) $calls[0][1][1]);
|
||||
$this->assertEquals('addFactory', $calls[0][0]);
|
||||
$this->assertEquals('template', $calls[0][1][0]);
|
||||
$this->assertEquals('flasher.notification_factory', (string) $calls[0][1][1]);
|
||||
|
||||
$this->assertSame('addFactory', $calls[1][0]);
|
||||
$this->assertSame('toastr', $calls[1][1][0]);
|
||||
$this->assertSame('flasher.toastr', (string) $calls[1][1][1]);
|
||||
$this->assertEquals('addFactory', $calls[1][0]);
|
||||
$this->assertEquals('toastr', $calls[1][1][0]);
|
||||
$this->assertEquals('flasher.toastr', (string) $calls[1][1][1]);
|
||||
}
|
||||
|
||||
private function getRawContainer()
|
||||
|
||||
Reference in New Issue
Block a user