We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f85d9bc commit 029ed51Copy full SHA for 029ed51
content/zh/post/2024/测试技能进阶三_property_based_testing.md
@@ -1,7 +1,7 @@
1
+++
2
title = "测试技能进阶(三): Property Based Testing"
3
date = 2024-10-14T09:37:00-07:00
4
-lastmod = 2024-10-14T14:56:09-07:00
+lastmod = 2024-10-14T15:28:08-07:00
5
tags = ["testing", "rust"]
6
categories = ["testing", "rust"]
7
draft = false
@@ -308,7 +308,7 @@ fn reverse<T: Clone>(xs: &[T]) -> Vec<T> {
308
}
309
```
310
311
-对于任意类型的列表,反转之后现反转的结果,肯定是和原结果一样的,那么我们就可以开始声明我们的标准(specification), 那就是任意的列表,可以是字符串列表,整型列表或者是其他的结构体列表:
+对于任意类型的列表,反转之后再反转的结果,肯定是和原结果一样的,那么我们就可以开始声明我们的标准(specification), 那就是任意的列表,可以是字符串列表,整型列表或者是其他的结构体列表:
312
313
```rust
314
#[cfg(test)]
0 commit comments