• Home
  • Raw
  • Download

Lines Matching refs:getValue

53     expect(await trace.getEntry(0).getValue()).toEqual('entry-0');
54 expect(await trace.getEntry(4).getValue()).toEqual('entry-4');
59 expect(await trace.getEntry(-1).getValue()).toEqual('entry-4');
60 expect(await trace.getEntry(-5).getValue()).toEqual('entry-0');
96 expect(await slice.findClosestEntry(time9)?.getValue()).toEqual('entry-1');
97 expect(await slice.findClosestEntry(time10)?.getValue()).toEqual('entry-1');
98 expect(await slice.findClosestEntry(time11)?.getValue()).toEqual('entry-1');
99 expect(await slice.findClosestEntry(time12)?.getValue()).toEqual('entry-3');
100 expect(await slice.findClosestEntry(time13)?.getValue()).toEqual('entry-3');
101 expect(await slice.findClosestEntry(time14)?.getValue()).toEqual('entry-3');
104 expect(await trace.findClosestEntry(time9)?.getValue()).toEqual('entry-0');
105 expect(await trace.findClosestEntry(time10)?.getValue()).toEqual('entry-0');
106 expect(await trace.findClosestEntry(time11)?.getValue()).toEqual('entry-1');
107 expect(await trace.findClosestEntry(time12)?.getValue()).toEqual('entry-3');
108 expect(await trace.findClosestEntry(time13)?.getValue()).toEqual('entry-4');
109 expect(await trace.findClosestEntry(time14)?.getValue()).toEqual('entry-4');
118 expect(await slice.findFirstGreaterOrEqualEntry(time9)?.getValue()).toEqual('entry-1');
119 expect(await slice.findFirstGreaterOrEqualEntry(time10)?.getValue()).toEqual('entry-1');
120 expect(await slice.findFirstGreaterOrEqualEntry(time11)?.getValue()).toEqual('entry-1');
121 expect(await slice.findFirstGreaterOrEqualEntry(time12)?.getValue()).toEqual('entry-3');
125 expect(await trace.findFirstGreaterOrEqualEntry(time9)?.getValue()).toEqual('entry-0');
126 expect(await trace.findFirstGreaterOrEqualEntry(time10)?.getValue()).toEqual('entry-0');
127 expect(await trace.findFirstGreaterOrEqualEntry(time11)?.getValue()).toEqual('entry-1');
128 expect(await trace.findFirstGreaterOrEqualEntry(time12)?.getValue()).toEqual('entry-3');
129 expect(await trace.findFirstGreaterOrEqualEntry(time13)?.getValue()).toEqual('entry-4');
139 expect(await slice.findFirstGreaterEntry(time9)?.getValue()).toEqual('entry-1');
140 expect(await slice.findFirstGreaterEntry(time10)?.getValue()).toEqual('entry-1');
141 expect(await slice.findFirstGreaterEntry(time11)?.getValue()).toEqual('entry-3');
145 expect(await trace.findFirstGreaterEntry(time9)?.getValue()).toEqual('entry-0');
146 expect(await trace.findFirstGreaterEntry(time10)?.getValue()).toEqual('entry-1');
147 expect(await trace.findFirstGreaterEntry(time11)?.getValue()).toEqual('entry-3');
148 expect(await trace.findFirstGreaterEntry(time12)?.getValue()).toEqual('entry-4');
160 expect(await slice.findLastLowerOrEqualEntry(time11)?.getValue()).toEqual('entry-2');
161 expect(await slice.findLastLowerOrEqualEntry(time12)?.getValue()).toEqual('entry-3');
162 expect(await slice.findLastLowerOrEqualEntry(time13)?.getValue()).toEqual('entry-3');
166 expect(await trace.findLastLowerOrEqualEntry(time10)?.getValue()).toEqual('entry-0');
167 expect(await trace.findLastLowerOrEqualEntry(time11)?.getValue()).toEqual('entry-2');
168 expect(await trace.findLastLowerOrEqualEntry(time12)?.getValue()).toEqual('entry-3');
169 expect(await trace.findLastLowerOrEqualEntry(time13)?.getValue()).toEqual('entry-4');
170 expect(await trace.findLastLowerOrEqualEntry(time14)?.getValue()).toEqual('entry-4');
182 expect(await slice.findLastLowerEntry(time12)?.getValue()).toEqual('entry-2');
183 expect(await slice.findLastLowerEntry(time13)?.getValue()).toEqual('entry-3');
184 expect(await slice.findLastLowerEntry(time14)?.getValue()).toEqual('entry-3');
185 expect(await slice.findLastLowerEntry(time15)?.getValue()).toEqual('entry-3');
190 expect(await trace.findLastLowerEntry(time11)?.getValue()).toEqual('entry-0');
191 expect(await trace.findLastLowerEntry(time12)?.getValue()).toEqual('entry-2');
192 expect(await trace.findLastLowerEntry(time13)?.getValue()).toEqual('entry-3');
193 expect(await trace.findLastLowerEntry(time14)?.getValue()).toEqual('entry-4');
194 expect(await trace.findLastLowerEntry(time15)?.getValue()).toEqual('entry-4');
988 expect(await trace.getEntry(0).getValue()).toEqual('entry-0');