From c54c21c0a9710b25c9ccbfb1a11664c0a8ba1f30 Mon Sep 17 00:00:00 2001 From: Asmir Mustafic Date: Sun, 3 Jan 2021 22:56:53 +0100 Subject: [PATCH] di test --- .../DependencyInjection/ConfigurationTest.php | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tests/DependencyInjection/ConfigurationTest.php diff --git a/tests/DependencyInjection/ConfigurationTest.php b/tests/DependencyInjection/ConfigurationTest.php new file mode 100644 index 0000000..5e163e9 --- /dev/null +++ b/tests/DependencyInjection/ConfigurationTest.php @@ -0,0 +1,22 @@ +getDebugContainer(); + + $tempDir = sys_get_temp_dir(); + + $builder->dumpContainerForProd($tempDir, $debugContainer); + $this->assertFileExists($tempDir . '/SoapContainer.php'); + } +}