2017 © Pedro Peláez
 

library fbexpect

Unit test helpers for Facebook projects

image

facebook/fbexpect

Unit test helpers for Facebook projects

  • Thursday, July 5, 2018
  • by fredemmott
  • Repository
  • 12 Watchers
  • 7 Stars
  • 6,021 Installations
  • Hack
  • 22 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 7 Versions
  • 97 % Grown

The README.md

Build Status, (*1)

FBExpect

FBExpect is a standalone unit testing utility based on the notion of assertions from PHPUnit. Starting with 2.x, FBExpect no longer uses PHPUnit as a dependency, and instead implements the assertions directly, and is intentended for use with HackTest., (*2)

Examples

Clarity

It is linguistically clear which value is the expected value and which is the actual value:, (*3)

use function Facebook\FBExpect\expect;

// PHPUnit
$this->assertSame($a, $b);

// FBExpect
expect($b)->toBeSame($a);

Type Refinement

use function Facebook\FBExpect\expect;

// PHPUnit
$this->assertNotNull($x); // Actual test
assert($x !== null); // Tell the typechecker what's going on
$this->assertInstanceOf(Foo::class, $y);
assert($y instanceof Foo);

// FBExpect
$x = expect($x)->toNotBeNull();
$y = expect($y)->toBeInstanceOf(Foo::class);

Installation

FBExpect is installed via composer:, (*4)

composer require facebook/fbexpect

Composer must be executed with php, not HHVM., (*5)

License

FBExpect is MIT-licensed., (*6)

The Versions

05/07 2018

dev-master

9999999-dev

Unit test helpers for Facebook projects

  Sources   Download

MIT

The Requires

 

12/06 2018

v1.1.0

1.1.0.0

Unit test helpers for Facebook projects

  Sources   Download

MIT

The Requires

 

09/05 2018

v1.0.0

1.0.0.0

Unit test helpers for Facebook projects

  Sources   Download

MIT

The Requires

 

09/02 2018

v0.4.1

0.4.1.0

Unit test helpers for Facebook projects

  Sources   Download

The Requires

 

05/01 2018

v0.4

0.4.0.0

Unit test helpers for Facebook projects

  Sources   Download

The Requires

 

20/09 2017

v0.3

0.3.0.0

Unit test helpers for Facebook projects

  Sources   Download

The Requires

 

01/08 2017

v0.2

0.2.0.0

Unit test helpers for Facebook projects

  Sources   Download

The Requires