Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit 361df6c

Browse files
committed
requested changes
1 parent 65a3063 commit 361df6c

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,7 @@ Class | Method | HTTP request | Description
873873

874874
1. Copy `.env.example` to `.env` and fill in the values.
875875
2. Run `docker build -t php .` to build the image.
876-
3. Run `docker run -p 5050:5050 --rm php` to run the tests and delete container immediately after.
876+
3. Run `docker run --rm php` to run the tests and delete container immediately after.
877877

878878
## Author
879879

__tests__/README_TESTS.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
## Tool:
2-
We use `codeception` for testing. You shall have installed `codeception` via `composer` in order to run the tests.
2+
We use `codeception` for testing. You should have installed `codeception` via `composer` in order to run the tests.
33

44
`__tests__/UnitTester.php` is used to configure `codeception` and to load `vendor/autoload.php` file. Please do not modify this file!
55

66

77
## How to write tests:
8-
All tests shall be in `__tests__/Unit/` folder. And shall be named as `*Test.php`. All test functions shall be named as `test*` (see example).
8+
All tests should be in `__tests__/Unit/` folder. And should be named as `*Test.php`. All test functions should be named as `test*` (see example).
99

1010
Import sdk:
1111

@@ -53,7 +53,7 @@ Test example:
5353

5454

5555
## Environment variables:
56-
`.env` file shall be in the root of the project and shall contain `X_APP_ID`, `X_APP_TOKEN` and `VOUCHERIFY_HOST` variables. Check `.env.example` for reference.
56+
`.env` file should be in the root of the project and should contain `X_APP_ID`, `X_APP_TOKEN` and `VOUCHERIFY_HOST` variables. Check `.env.example` for reference.
5757

5858
## Run tests:
5959

__tests__/Unit/MainTest.php

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
//test
66
class MainTest extends \Codeception\Test\Unit
77
{
8+
/**
9+
* @TODO, refactor test
10+
*/
11+
812
protected $productsApiInstance;
913
protected $campaignsApiInstance;
1014
protected $validationRulesApiInstance;

0 commit comments

Comments
 (0)