Conditions | 1 |
Paths | 1 |
Total Lines | 23 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function testChargeWithStripe() |
||
19 | { |
||
20 | // get the logged in user (create one if no one is logged in) |
||
21 | $user = $this->registerAndLoginTestingUser(); |
||
22 | |||
23 | // create stripe account for this user |
||
24 | $createStripeAccountAction = App::make(CreateStripeAccountObjectTask::class); |
||
25 | $stripeAccount = $createStripeAccountAction->run($user, 'cus_8mBD5S1SoyD4zL', 'card_18Uck6KFvMcBUkvQorbBkYhR', 'credit', '4242', 'WsNM4K8puHbdS2VP'); |
||
|
|||
26 | |||
27 | $payId = 'ch_z8WDARKFvzcBUkvQzrbBvfhz'; |
||
28 | |||
29 | // mock the ChargeWithStripeTask external API call |
||
30 | $this->mock(ChargeWithStripeTask::class)->shouldReceive('charge')->andReturn([ |
||
31 | 'payment_method' => 'stripe', |
||
32 | 'description' => $payId |
||
33 | ]); |
||
34 | |||
35 | $stripe = App::make(ChargeWithStripeTask::class); |
||
36 | $result = $stripe->charge($user, 1000, 'USD'); |
||
37 | |||
38 | $this->assertEquals($result['payment_method'], 'stripe'); |
||
39 | $this->assertEquals($result['description'], $payId); |
||
40 | } |
||
41 | |||
43 |
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVar
assignment in line 1 and the$higher
assignment in line 2 are dead. The first because$myVar
is never used and the second because$higher
is always overwritten for every possible time line.