Codeceptionを試しに使用しているのですが、グローバル変数の扱いで困っています。Unitテストにおいてグローバル変数は使用できないのでしょうか?
すでにある既存システムのテストコードを書こうとしているので、あまり既存システムに手を入れたくないものでして、テストコード側で解決できる方法を探しています。
以下は単純化したコードです。
###該当のソースコード
php
1<?php 2//-------------------- 3//global.php 4//-------------------- 5$garray = [1,2,3,4,5];
php
1<?php 2//-------------------- 3//app.php 4//-------------------- 5include_once('global.php'); 6 7function putarray($i){ 8 global $garray; 9 echo $garray[$i]; 10 return($garray[$i]); 11}
php
1<?php 2//-------------------- 3// tests/unit/appTest.php 4//-------------------- 5require_once('app.php'); 6 7class appTest extends \PHPUnit_Framework_TestCase 8{ 9 protected function setUp(){ 10 ; 11 } 12 13 protected function tearDown(){ 14 ; 15 } 16 17 // tests 18 public function testMe(){ 19 $this->assertTrue(putarray(1)===2); 20 } 21}
###実行結果
bash
1$ codecept run 2Codeception PHP Testing Framework v2.1.8 3Powered by PHPUnit 5.3.2 by Sebastian Bergmann and contributors. 4 5Acceptance Tests (0) ------------------------ 6--------------------------------------------- 7 8Functional Tests (0) ------------------------ 9--------------------------------------------- 10 11Unit Tests (1) ------------------------------ 12appTest::testMe Fail 13--------------------------------------------- 14 15 16Time: 241 ms, Memory: 10.50Mb 17 18There was 1 failure: 19 20--------- 211) appTest::testMe 22Failed asserting that false is true. 23#1 /home/ubuntu/test/tests/unit/appTest.php:18 24#2 appTest->testMe 25#3 /usr/local/bin/codecept:7 26 27FAILURES! 28Tests: 1, Assertions: 1, Failures: 1.
###環境
bash
1$ codecept --version 2Codeception version 2.1.8 3 4$ php --version 5PHP 5.5.9-1ubuntu4.14 (cli) (built: Oct 28 2015 01:34:46) 6Copyright (c) 1997-2014 The PHP Group 7Zend Engine v2.5.0, Copyright (c) 1998-2014 Zend Technologies 8 with Zend OPcache v7.0.3, Copyright (c) 1999-2014, by Zend Technologies 9 with Xdebug v2.4.0, Copyright (c) 2002-2016, by Derick Rethans
以上です。
よろしくお願いいたします。
追記
5/29 nnssnさんのご指摘を反映しました。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2016/05/29 09:18 編集
2016/05/29 11:54
2016/05/29 11:59