Jelajahi Sumber

removed auto generated files from repo

Carsten Brandt 12 tahun lalu
induk
melakukan
f22abd70e2
5 mengubah file dengan 6 tambahan dan 4331 penghapusan
  1. 4 0
      tests/.gitignore
  2. 0 2061
      tests/acceptance/WebGuy.php
  3. 0 2222
      tests/functional/TestGuy.php
  4. 2 1
      tests/unit.suite.dist.yml
  5. 0 47
      tests/unit/CodeGuy.php

+ 4 - 0
tests/.gitignore

@@ -0,0 +1,4 @@
+# these files are auto generated by codeception build
+/unit/CodeGuy.php
+/functional/TestGuy.php
+/acceptance/WebGuy.php

File diff ditekan karena terlalu besar
+ 0 - 2061
tests/acceptance/WebGuy.php


File diff ditekan karena terlalu besar
+ 0 - 2222
tests/functional/TestGuy.php


+ 2 - 1
tests/unit.suite.dist.yml

@@ -5,4 +5,5 @@
 
 class_name: CodeGuy
 modules:
-    enabled: [CodeHelper]
+    enabled:
+        - CodeHelper

+ 0 - 47
tests/unit/CodeGuy.php

@@ -1,47 +0,0 @@
-<?php
-// This class was automatically generated by build task
-// You should not change it manually as it will be overwritten on next build
-// @codingStandardsIgnoreFile
-
-
-use \Codeception\Maybe;
-use Codeception\Module\CodeHelper;
-
-/**
- * Inherited methods
- * @method void execute($callable)
- * @method void wantToTest($text)
- * @method void wantTo($text)
- * @method void expectTo($prediction)
- * @method void expect($prediction)
- * @method void amGoingTo($argumentation)
- * @method void am($role)
- * @method void lookForwardTo($achieveValue)
- * @method void offsetGet($offset)
- * @method void offsetSet($offset, $value)
- * @method void offsetExists($offset)
- * @method void offsetUnset($offset)
-*/
-
-class CodeGuy extends \Codeception\AbstractGuy
-{
-    
-    /**
-     * This method is generated.
-     * Documentation taken from corresponding module.
-     * ----------------------------------------------
-     *
-     *
-     * @see Codeception\Module::getName()
-     * @return \Codeception\Maybe
-     */
-    public function getName() {
-        $this->scenario->addStep(new \Codeception\Step\Action('getName', func_get_args()));
-        if ($this->scenario->running()) {
-            $result = $this->scenario->runStep();
-            return new Maybe($result);
-        }
-        return new Maybe();
-    }
-}
-