PHP Classes

File: tests/serializeTest.php

Recommend this page to a friend!
  Classes of Rick Hambrook   Nest   tests/serializeTest.php   Download  
File: tests/serializeTest.php
Role: Unit test script
Content type: text/plain
Description: Unit test: serialize
Class: Nest
Easily set and get values of nested arrays
Author: By
Last change: feat(meta): update namespaces and add composer file for composer/packagist support
Date: 8 years ago
Size: 681 bytes
 

Contents

Class file image Download
<?php

require_once(implode(DIRECTORY_SEPARATOR, [__DIR__, "..", "src", "Nest.php"]));

use \
Hambrook\Nest\Nest as Nest;

/**
 * Tests for PHPUnit
 *
 * @author Rick Hambrook <rick@rickhambrook.com>
 * @copyright 2015 Rick Hambrook
 * @license https://www.gnu.org/licenses/gpl.txt GNU General Public License v3
 */
class serializeTest extends PHPUnit_Framework_TestCase {

    private
$data = [
       
"foo" => "bar",
       
"one" => [
           
"two" => "three"
       
]
    ];

    public function
testSerialize() {
       
$Nest = new Nest();
       
// Valid
       
$Nest->data($this->data);
       
// First level
       
$tmp = unserialize(serialize($Nest))->data();
       
// Nested
       
$this->assertEquals($this->data, $tmp);
    }

}