Skip to content

Commit 962c6f7

Browse files
committedAug 14, 2023
Move "Test get_spacegroup_type" from symmetry.jl to dataset.jl
1 parent 5c5a4e9 commit 962c6f7

File tree

3 files changed

+62
-62
lines changed

3 files changed

+62
-62
lines changed
 

‎test/dataset.jl

+62
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,65 @@
1+
@testset "Test `get_spacegroup_type`" begin
2+
# Adapted from https://github.com/unkcpz/LibSymspg.jl/blob/53d2f6d/test/test_api.jl#L7-L12
3+
@test get_spacegroup_type(101) == SpacegroupType(
4+
15,
5+
"C2/c",
6+
"I 1 1 2/a",
7+
"C 2/c = I 1 1 2/a",
8+
"C2h^6",
9+
101,
10+
"-I 2a",
11+
"-c3",
12+
"2/m",
13+
"C2h",
14+
8,
15+
"2/mC",
16+
)
17+
@test get_spacegroup_type(419) == SpacegroupType(
18+
136,
19+
"P4_2/mnm",
20+
"P 4_2/m 2_1/n 2/m",
21+
"P 4_2/m n m",
22+
"D4h^14",
23+
419,
24+
"-P 4n 2n",
25+
"",
26+
"4/mmm",
27+
"D4h",
28+
36,
29+
"4/mmmP",
30+
)
31+
@test get_spacegroup_type(1) ==
32+
SpacegroupType(1, "P1", "P 1", "P 1", "C1^1", 1, "P 1", "", "1", "C1", 1, "1P")
33+
@test get_spacegroup_type(525) == SpacegroupType(
34+
227,
35+
"Fd-3m",
36+
"F 4_1/d -3 2/m",
37+
"F d -3 m",
38+
"Oh^7",
39+
525,
40+
"F 4d 2 3 -1d",
41+
"1",
42+
"m-3m",
43+
"Oh",
44+
72,
45+
"m-3mF",
46+
)
47+
@test get_spacegroup_type(485) == SpacegroupType(
48+
191,
49+
"P6/mmm",
50+
"P 6/m 2/m 2/m",
51+
"P 6/m m m",
52+
"D6h^1",
53+
485,
54+
"-P 6 2",
55+
"",
56+
"6/mmm",
57+
"D6h",
58+
58,
59+
"6/mmm",
60+
)
61+
end
62+
163
# From https://spglib.github.io/spglib/definition.html#computing-rigid-rotation-introduced-by-idealization
264
@testset "Computing rigid rotation introduced by idealization" begin
365
lattice = [

‎test/runtests.jl

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ using Test
44
@testset "Spglib.jl" begin
55
# Write your own tests here.
66
include("cell.jl")
7-
include("symmetry.jl")
87
include("magnetic.jl")
98
include("standardize.jl")
109
include("reciprocal.jl")

‎test/symmetry.jl

-61
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.