summaryrefslogtreecommitdiff
path: root/test/files/jvm/serialization.check
blob: d7ec08e016308c224845fd6d6a2e3a1c702260a2 (plain) (blame)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
x1 = List()
y1 = List()
x1 eq y1: true - y1 eq x1: true

x2 = None
y2 = None
x2 eq y2: true - y2 eq x2: true

x3 = Array[1,2,3]
y3 = Array[1,2,3]
arrayEquals(x3, y3): true

x4 = <na>
y4 = <na>
x4(2): 4 - y4(2): 4

x5 = 'hello
y5 = 'hello
x5 eq y5: true - y5 eq x5: true
x5 equals y5: true - y5 equals x5: true

x6 = (BannerLimit,12345)
y6 = (BannerLimit,12345)
x6 eq y6: false - y6 eq x6: false
x6 equals y6: true - y6 equals x6: true

x = List((buffers,20), (layers,2), (title,3))
y = List((buffers,20), (layers,2), (title,3))
x equals y: true - y equals x: true

x = Map(buffers -> 20, layers -> 2, title -> 3)
y = Map(buffers -> 20, layers -> 2, title -> 3)
x equals y: true - y equals x: true

x = Set(2, 3)
y = Set(2, 3)
x equals y: true - y equals x: true

x = Set(5, 3)
y = Set(5, 3)
x equals y: true - y equals x: true

x = Queue(a, b, c)
y = Queue(a, b, c)
x equals y: true - y equals x: true

x = Stack(a, b, c)
y = Stack(a, b, c)
x equals y: true - y equals x: true

x = Map(42 -> FortyTwo)
y = Map(42 -> FortyTwo)
x equals y: true - y equals x: true

x = Set(0, 2)
y = Set(0, 2)
x equals y: true - y equals x: true

x = ArrayBuffer(one, two)
y = ArrayBuffer(one, two)
x equals y: true - y equals x: true

x = Map(title -> 3, buffers -> 20, layers -> 2)
y = Map(title -> 3, buffers -> 20, layers -> 2)
x equals y: true - y equals x: true

x = Set(0, 8, 9)
y = Set(0, 8, 9)
x equals y: true - y equals x: true

x = Set(layers, buffers, title)
y = Set(layers, buffers, title)
x equals y: true - y equals x: true

x = LinkedList(2, 3)
y = LinkedList(2, 3)
x equals y: true - y equals x: true

x = Queue(20, 2, 3)
y = Queue(20, 2, 3)
x equals y: true - y equals x: true

x = Stack(20, 2, 3)
y = Stack(20, 2, 3)
x equals y: true - y equals x: true

x = ListBuffer(white, black)
y = ListBuffer(white, black)
x equals y: true - y equals x: true

x = <html><title>title</title><body></body></html>
y = <html><title>title</title><body></body></html>
x equals y: true - y equals x: true

x = <html>
      <body>
       <table cellpadding="2" cellspacing="0">
        <tr>
          <th>Last Name</th>
          <th>First Name</th>
        </tr>
        <tr>
          <td> Tom </td>
          <td> 20 </td>
        </tr><tr>
          <td> Bob </td>
          <td> 22 </td>
        </tr><tr>
          <td> James </td>
          <td> 19 </td>
        </tr>
      </table>
      </body>
    </html>
y = <html>
      <body>
       <table cellpadding="2" cellspacing="0">
        <tr>
          <th>Last Name</th>
          <th>First Name</th>
        </tr>
        <tr>
          <td> Tom </td>
          <td> 20 </td>
        </tr><tr>
          <td> Bob </td>
          <td> 22 </td>
        </tr><tr>
          <td> James </td>
          <td> 19 </td>
        </tr>
      </table>
      </body>
    </html>
x equals y: true - y equals x: true

x = Tim
y = Tim
x equals y: true - y equals x: true

x = Bob
y = Bob
x equals y: true - y equals x: true

x = John
y = John
x equals y: true - y equals x: true

x = Bill
y = Bill
x equals y: true - y equals x: true

x = Paul
y = Paul
x equals y: true - y equals x: true