| ... | ... | @@ -183,7 +183,7 @@ pub fn AlignedArrayList(comptime T: type, comptime A: u29) type { |
| 183 | 183 | }; |
| 184 | 184 | } |
| 185 | 185 | |
| 186 | | test "basic ArrayList test" { |
| 186 | test "std.ArrayList.basic" { |
| 187 | 187 | var bytes: [1024]u8 = undefined; |
| 188 | 188 | const allocator = &std.heap.FixedBufferAllocator.init(bytes[0..]).allocator; |
| 189 | 189 | |
| ... | ... | @@ -270,7 +270,7 @@ test "std.ArrayList.swapRemove" { |
| 270 | 270 | assert(list.len == 4); |
| 271 | 271 | } |
| 272 | 272 | |
| 273 | | test "iterator ArrayList test" { |
| 273 | test "std.ArrayList.iterator" { |
| 274 | 274 | var list = ArrayList(i32).init(debug.global_allocator); |
| 275 | 275 | defer list.deinit(); |
| 276 | 276 | |
| ... | ... | @@ -299,7 +299,7 @@ test "iterator ArrayList test" { |
| 299 | 299 | assert(it.next().? == 1); |
| 300 | 300 | } |
| 301 | 301 | |
| 302 | | test "insert ArrayList test" { |
| 302 | test "std.ArrayList.insert" { |
| 303 | 303 | var list = ArrayList(i32).init(debug.global_allocator); |
| 304 | 304 | defer list.deinit(); |
| 305 | 305 | |
| ... | ... | @@ -313,7 +313,7 @@ test "insert ArrayList test" { |
| 313 | 313 | assert(list.items[3] == 3); |
| 314 | 314 | } |
| 315 | 315 | |
| 316 | | test "insertSlice ArrayList test" { |
| 316 | test "std.ArrayList.insertSlice" { |
| 317 | 317 | var list = ArrayList(i32).init(debug.global_allocator); |
| 318 | 318 | defer list.deinit(); |
| 319 | 319 | |