Skip to content

Commit 4a4626c

Browse files
committed
🚨 Increase test coverage
1 parent a421171 commit 4a4626c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/dcm/misc.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,7 @@ end
3030

3131
D = DCM(1.0f0, 2.0f0, 3.0f0, 4.0f0, 5.0f0, 6.0f0, 7.0f0, 8.0f0, 9.0f0)
3232
@test Tuple(D) === (1.0f0, 2.0f0, 3.0f0, 4.0f0, 5.0f0, 6.0f0, 7.0f0, 8.0f0, 9.0f0)
33+
34+
D = DCM{Float64}(1, 2, 3.0, 4.0f0, 5, 0x06, 0o07, 0x08, 9)
35+
@test Tuple(D) === (1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0)
3336
end

0 commit comments

Comments
 (0)