From 5a916188e95d9a6b3030dcfa46f1f72ddcd60f2e Mon Sep 17 00:00:00 2001 From: Ivan Stasiuk Date: Mon, 26 Feb 2024 10:13:58 +0000 Subject: [PATCH] test: no source --- tests/ClientTest.php | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/tests/ClientTest.php b/tests/ClientTest.php index 6544638..488bd6f 100644 --- a/tests/ClientTest.php +++ b/tests/ClientTest.php @@ -1,17 +1,14 @@ . -// -// This Source Code Form is subject to the terms of the Mozilla Public -// License, v. 2.0. If a copy of the MPL was not distributed with this file, -// You can obtain one at https://mozilla.org/MPL/2.0/. +// Copyright (C) 2024 Ivan Stasiuk . +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. namespace BrokeYourBike\ZenithBankCIB\Tests; use GuzzleHttp\Client as GuzzleHttpClient; use BrokeYourBike\ZenithBankCIB\Interfaces\ConfigInterface; use BrokeYourBike\ZenithBankCIB\Client; -use BrokeYourBike\HasSourceModel\HasSourceModelTrait; /** * @author Ivan Stasiuk @@ -29,12 +26,4 @@ public function it_implemets_http_client_interface(): void $this->assertSame($mockedConfig, $api->getConfig()); } - - /** @test */ - public function it_uses_has_source_model_trait(): void - { - $usedTraits = class_uses(Client::class); - - $this->assertArrayHasKey(HasSourceModelTrait::class, $usedTraits); - } }