Skip to content

Commit

Permalink
Add XD test for third dimension
Browse files Browse the repository at this point in the history
  • Loading branch information
omlins committed Jan 3, 2024
1 parent 08b8088 commit 70d8671
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,8 @@ using Diffusion
B = zeros(4, 4)
A = ones(4, 4)
memcopy!(B, A)
@test all(B .== A)
@test all(B .== A)
D = zeros(4, 4, 4)
C = ones(4, 4, 4)
memcopy!(D, C)
@test all(D .== C)

0 comments on commit 70d8671

Please sign in to comment.