chengkun
2025-09-12 b21e53f16f228d3192eb54178f081395878b2406
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
 
namespace Tests;
 
use think\Collection;
 
class CollectionTest extends TestCase
{
    public function testMerge()
    {
        $c = new Collection(['name' => 'Hello']);
        $this->assertSame(['name' => 'Hello', 'id' => 1], $c->merge(['id' => 1])->all());
    }
 
    public function testFirst()
    {
        $c = new Collection(['name' => 'Hello', 'age' => 25]);
 
        $this->assertSame('Hello', $c->first());
    }
 
    public function testLast()
    {
        $c = new Collection(['name' => 'Hello', 'age' => 25]);
 
        $this->assertSame(25, $c->last());
    }
 
    public function testToArray()
    {
        $c = new Collection(['name' => 'Hello', 'age' => 25]);
 
        $this->assertSame(['name' => 'Hello', 'age' => 25], $c->toArray());
    }
 
    public function testToJson()
    {
        $c = new Collection(['name' => 'Hello', 'age' => 25]);
 
        $this->assertSame(json_encode(['name' => 'Hello', 'age' => 25]), $c->toJson());
        $this->assertSame(json_encode(['name' => 'Hello', 'age' => 25]), (string) $c);
        $this->assertSame(json_encode(['name' => 'Hello', 'age' => 25]), json_encode($c));
    }
 
    public function testSerialize()
    {
        $c = new Collection(['name' => 'Hello', 'age' => 25]);
 
        $sc = serialize($c);
        $c = unserialize($sc);
 
        $this->assertSame(['name' => 'Hello', 'age' => 25], $c->all());
    }
 
    public function testGetIterator()
    {
        $c = new Collection(['name' => 'Hello', 'age' => 25]);
 
        $this->assertInstanceOf(\ArrayIterator::class, $c->getIterator());
 
        $this->assertSame(['name' => 'Hello', 'age' => 25], $c->getIterator()->getArrayCopy());
    }
 
    public function testCount()
    {
        $c = new Collection(['name' => 'Hello', 'age' => 25]);
 
        $this->assertCount(2, $c);
    }
}