You are here

DollarFormatterTest.php in Loft Data Grids 7.2

Tests for the DollarFormatter class

File

vendor/aklump/loft_data_grids/tests/phpunit/DollarFormatterTest.php
View source
<?php

/**
 * @file
 * Tests for the DollarFormatter class
 *
 * @ingroup loft_data_grids
 * @{
 */
namespace AKlump\LoftDataGrids;

class DollarFormatterTest extends \PHPUnit_Framework_TestCase {
  public function testFormatting() {
    $obj = new DollarFormatter(98.59999999999999);
    $this
      ->assertSame('$98.60', $obj
      ->get());
    $obj = new DollarFormatter();
    $this
      ->assertSame('$0.00', $obj
      ->get());
    $obj = new DollarFormatter('$125.00');
    $this
      ->assertSame('$125.00', $obj
      ->get());
    $obj = new DollarFormatter('$65');
    $this
      ->assertSame('$65.00', $obj
      ->get());
    $obj = new DollarFormatter('123456');
    $this
      ->assertSame('$123,456.00', $obj
      ->get());
  }

}

/** @} */

//end of group: loft_data_grids

Related topics

Classes