PHP Classes

File: tests/ArchTest.php

Recommend this page to a friend!
  Packages of A. B. M. Mahmudul Hasan   OTP   tests/ArchTest.php   Download  
File: tests/ArchTest.php
Role: Example script
Content type: text/plain
Description: Example script
Class: OTP
Generate token to be verified during a time window
Author: By
Last change:
Date: 20 days ago
Size: 271 bytes
 

Contents

Class file image Download
<?php

test
('No debugging statements', function () {
   
expect(['dd', 'dump', 'ray', 'die', 'd', 'eval', 'sleep', 'print_r', 'var_dump'])->each->not()->toBeUsed();
});

test('No echo statements', function () {
   
expect(['echo', 'print'])->each->not()->toBeUsed();
});