File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 15
15
}
16
16
17
17
#[ test]
18
- fn test_vec_usize ( ) {
18
+ fn index_vec_with_usize ( ) {
19
19
let mut aos = Vec :: new ( ) ;
20
20
let mut soa = ParticleVec :: new ( ) ;
21
21
@@ -61,7 +61,7 @@ fn test_vec_usize() {
61
61
}
62
62
63
63
#[ test]
64
- fn test_vec_ranges ( ) {
64
+ fn index_vec_with_ranges ( ) {
65
65
let mut particles = Vec :: new ( ) ;
66
66
particles. push ( Particle :: new ( String :: from ( "Cl" ) , 1.0 ) ) ;
67
67
particles. push ( Particle :: new ( String :: from ( "Na" ) , 2.0 ) ) ;
@@ -128,7 +128,7 @@ fn test_vec_ranges() {
128
128
}
129
129
130
130
#[ test]
131
- fn test_slice_usize ( ) {
131
+ fn index_slice_with_usize ( ) {
132
132
let mut aos = Vec :: new ( ) ;
133
133
let mut soa = ParticleVec :: new ( ) ;
134
134
@@ -180,7 +180,7 @@ fn test_slice_usize() {
180
180
}
181
181
182
182
#[ test]
183
- fn test_slice_ranges ( ) {
183
+ fn index_slice_with_ranges ( ) {
184
184
let mut particles = Vec :: new ( ) ;
185
185
particles. push ( Particle :: new ( String :: from ( "Cl" ) , 1.0 ) ) ;
186
186
particles. push ( Particle :: new ( String :: from ( "Na" ) , 2.0 ) ) ;
You can’t perform that action at this time.
0 commit comments