Add newlines to tests. [skip ci]

This commit is contained in:
James Cole
2018-07-22 20:33:17 +02:00
parent b7752928a4
commit a616e06f9d
55 changed files with 55 additions and 55 deletions

View File

@@ -298,4 +298,4 @@ class AttachmentControllerTest extends TestCase
//$response = $this->post('/api/v1/attachments/' . $attachment->id . '/upload',$content, ['Accept' => 'application/json']); //$response = $this->post('/api/v1/attachments/' . $attachment->id . '/upload',$content, ['Accept' => 'application/json']);
$response->assertStatus(204); $response->assertStatus(204);
} }
} }

View File

@@ -186,4 +186,4 @@ class AvailableBudgetControllerTest extends TestCase
} }
} }

View File

@@ -172,4 +172,4 @@ class BudgetControllerTest extends TestCase
} }
} }

View File

@@ -329,4 +329,4 @@ class BudgetLimitControllerTest extends TestCase
$response->assertSee('Unknown budget.'); $response->assertSee('Unknown budget.');
} }
} }

View File

@@ -174,4 +174,4 @@ class CategoryControllerTest extends TestCase
} }
} }

View File

@@ -182,4 +182,4 @@ class ConfigurationControllerTest extends TestCase
} }
} }

View File

@@ -102,4 +102,4 @@ class CurrencyExchangeRateControllerTest extends TestCase
); );
$response->assertHeader('Content-Type', 'application/vnd.api+json'); $response->assertHeader('Content-Type', 'application/vnd.api+json');
} }
} }

View File

@@ -236,4 +236,4 @@ class JournalLinkControllerTest extends TestCase
$response->assertSee($journalLink->created_at->toAtomString()); // the creation moment. $response->assertSee($journalLink->created_at->toAtomString()); // the creation moment.
$response->assertHeader('Content-Type', 'application/vnd.api+json'); $response->assertHeader('Content-Type', 'application/vnd.api+json');
} }
} }

View File

@@ -197,4 +197,4 @@ class LinkTypeControllerTest extends TestCase
} }
} }

View File

@@ -1628,4 +1628,4 @@ class RecurrenceControllerTest extends TestCase
$response->assertHeader('Content-Type', 'application/vnd.api+json'); $response->assertHeader('Content-Type', 'application/vnd.api+json');
} }
} }

View File

@@ -125,4 +125,4 @@ class CreateControllerTest extends TestCase
$response->assertStatus(302); $response->assertStatus(302);
$response->assertSessionHas('success'); $response->assertSessionHas('success');
} }
} }

View File

@@ -91,4 +91,4 @@ class DeleteControllerTest extends TestCase
} }
} }

View File

@@ -169,4 +169,4 @@ class EditControllerTest extends TestCase
$response->assertSessionHas('success'); $response->assertSessionHas('success');
} }
} }

View File

@@ -239,4 +239,4 @@ class ShowControllerTest extends TestCase
$response->assertStatus(302); $response->assertStatus(302);
} }
} }

View File

@@ -219,4 +219,4 @@ class AmountControllerTest extends TestCase
$response = $this->get(route('budgets.income', ['2017-01-01', '2017-01-31'])); $response = $this->get(route('budgets.income', ['2017-01-01', '2017-01-31']));
$response->assertStatus(200); $response->assertStatus(200);
} }
} }

View File

@@ -92,4 +92,4 @@ class CreateControllerTest extends TestCase
$response->assertSessionHas('success'); $response->assertSessionHas('success');
} }
} }

View File

@@ -82,4 +82,4 @@ class DeleteControllerTest extends TestCase
$response->assertStatus(302); $response->assertStatus(302);
$response->assertSessionHas('success'); $response->assertSessionHas('success');
} }
} }

View File

@@ -91,4 +91,4 @@ class EditControllerTest extends TestCase
$response->assertStatus(302); $response->assertStatus(302);
$response->assertSessionHas('success'); $response->assertSessionHas('success');
} }
} }

View File

@@ -234,4 +234,4 @@ class IndexControllerTest extends TestCase
// has bread crumb // has bread crumb
$response->assertSee('<ol class="breadcrumb">'); $response->assertSee('<ol class="breadcrumb">');
} }
} }

View File

@@ -262,4 +262,4 @@ class ShowControllerTest extends TestCase
// has bread crumb // has bread crumb
$response->assertSee('<ol class="breadcrumb">'); $response->assertSee('<ol class="breadcrumb">');
} }
} }

View File

@@ -172,4 +172,4 @@ class NoCategoryControllerTest extends TestCase
// has bread crumb // has bread crumb
$response->assertSee('<ol class="breadcrumb">'); $response->assertSee('<ol class="breadcrumb">');
} }
} }

View File

@@ -233,4 +233,4 @@ class ShowControllerTest extends TestCase
$response->assertSee('<ol class="breadcrumb">'); $response->assertSee('<ol class="breadcrumb">');
} }
} }

View File

@@ -119,4 +119,4 @@ class ReconcileControllerTest extends TestCase
} }
} }

View File

@@ -166,4 +166,4 @@ class CreateControllerTest extends TestCase
$response->assertStatus(302); $response->assertStatus(302);
$response->assertSessionHas('success'); $response->assertSessionHas('success');
} }
} }

View File

@@ -75,4 +75,4 @@ class DeleteControllerTest extends TestCase
$response->assertSessionHas('success'); $response->assertSessionHas('success');
$response->assertRedirect(route('index')); $response->assertRedirect(route('index'));
} }
} }

View File

@@ -135,4 +135,4 @@ class EditControllerTest extends TestCase
$response->assertStatus(302); $response->assertStatus(302);
$response->assertSessionHas('success'); $response->assertSessionHas('success');
} }
} }

View File

@@ -186,4 +186,4 @@ class SelectControllerTest extends TestCase
$response = $this->get($uri); $response = $this->get($uri);
$response->assertStatus(200); $response->assertStatus(200);
} }
} }

View File

@@ -35,4 +35,4 @@ class FakeApiContext
return json_encode(['a' => 'b']); return json_encode(['a' => 'b']);
} }
} }

View File

@@ -189,4 +189,4 @@ class SpectreJobConfigurationTest extends TestCase
} }
} }

View File

@@ -215,4 +215,4 @@ class BunqPrerequisitesTest extends TestCase
$this->assertEquals('Some exception', $messages->first()); $this->assertEquals('Some exception', $messages->first());
$this->assertCount(1, $messages); $this->assertCount(1, $messages);
} }
} }

View File

@@ -242,4 +242,4 @@ class SpectrePrerequisitesTest extends TestCase
$this->assertEquals(0, $object->storePrerequisites($data)->count()); $this->assertEquals(0, $object->storePrerequisites($data)->count());
} }
} }

View File

@@ -114,4 +114,4 @@ class BunqRoutineTest extends TestCase
} }
} }

View File

@@ -226,4 +226,4 @@ class SpectreRoutineTest extends TestCase
$this->assertTrue(false, $e->getMessage()); $this->assertTrue(false, $e->getMessage());
} }
} }
} }

View File

@@ -444,4 +444,4 @@ class ChooseAccountsHandlerTest extends TestCase
} }
} }

View File

@@ -62,4 +62,4 @@ class NewBunqJobHandlerTest extends TestCase
$this->assertTrue($handler->configurationComplete()); $this->assertTrue($handler->configurationComplete());
} }
} }

View File

@@ -182,4 +182,4 @@ class ConfigureUploadHandlerTest extends TestCase
$this->assertEquals($expected, $result); $this->assertEquals($expected, $result);
} }
} }

View File

@@ -302,4 +302,4 @@ class NewFileJobHandlerTest extends TestCase
); );
} }
} }

View File

@@ -656,4 +656,4 @@ class ChooseAccountsHandlerTest extends TestCase
$this->assertEquals($expected, $result); $this->assertEquals($expected, $result);
} }
} }

View File

@@ -271,4 +271,4 @@ class ChooseLoginHandlerTest extends TestCase
$this->assertEquals(['logins' => [$login]], $handler->getNextData()); $this->assertEquals(['logins' => [$login]], $handler->getNextData());
} }
} }

View File

@@ -103,4 +103,4 @@ class DoAuthenticateHandlerTest extends TestCase
$this->assertEquals(['token-url' => $token->getConnectUrl()], $result); $this->assertEquals(['token-url' => $token->getConnectUrl()], $result);
} }
} }

View File

@@ -745,4 +745,4 @@ class ImportTransactionTest extends TestCase
$this->assertEquals('a', $importTransaction->tags[0]); $this->assertEquals('a', $importTransaction->tags[0]);
} }
} }

View File

@@ -502,4 +502,4 @@ class StageImportDataHandlerTest extends TestCase
//$this->assertEquals($expectedTransactions, $transactions); //$this->assertEquals($expectedTransactions, $transactions);
} }
} }

View File

@@ -314,4 +314,4 @@ class StageNewHandlerTest extends TestCase
} }
} }

View File

@@ -182,4 +182,4 @@ class AssetAccountMapperTest extends TestCase
$this->assertEquals($expected->id, $result->id); $this->assertEquals($expected->id, $result->id);
} }
} }

View File

@@ -82,4 +82,4 @@ class CSVProcessorTest extends TestCase
} }
$this->assertEquals([], $result); $this->assertEquals([], $result);
} }
} }

View File

@@ -168,4 +168,4 @@ class CurrencyMapperTest extends TestCase
$this->assertNull($result); $this->assertNull($result);
} }
} }

View File

@@ -536,4 +536,4 @@ class ImportableConverterTest extends TestCase
$this->assertEquals([], $result); $this->assertEquals([], $result);
} }
} }

View File

@@ -61,4 +61,4 @@ class ImportableCreatorTest extends TestCase
} }
} }

View File

@@ -99,4 +99,4 @@ class LineReaderTest extends TestCase
$this->assertEquals($specifics, $lines); $this->assertEquals($specifics, $lines);
} }
} }

View File

@@ -124,4 +124,4 @@ class MappedValuesValidatorTest extends TestCase
return $obj; return $obj;
} }
} }

View File

@@ -151,4 +151,4 @@ class MappingConvergerTest extends TestCase
$this->assertEquals(0, $result[1][0]->getMappedValue()); // value of mapping is 0. $this->assertEquals(0, $result[1][0]->getMappedValue()); // value of mapping is 0.
} }
} }

View File

@@ -216,4 +216,4 @@ class OpposingAccountMapperTest extends TestCase
$mapper->map(null, $amount, []); $mapper->map(null, $amount, []);
} }
} }

View File

@@ -447,4 +447,4 @@ class StageAuthenticatedHandlerTest extends TestCase
} }
} }
} }

View File

@@ -634,4 +634,4 @@ class StageImportDataHandlerTest extends TestCase
} }
} }
} }

View File

@@ -367,4 +367,4 @@ class StageNewHandlerTest extends TestCase
$this->assertTrue(false, $e->getMessage()); $this->assertTrue(false, $e->getMessage());
} }
} }
} }