File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed
Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 11[deps ]
22Aqua = " 4c88cf16-eb10-579e-8560-4a9242c79595"
3+ ExplicitImports = " 7d51a73a-1435-4ff3-83d9-f097790105c7"
34EzXML = " 8f5d6c58-4d21-5cfd-889c-e3ad7ee6a615"
45HybridSystems = " 2207ec0c-686c-5054-b4d2-543502888820"
56LazySets = " b4f0291d-fe17-52bc-9479-3d1a343d9043"
@@ -8,6 +9,7 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
89
910[compat ]
1011Aqua = " 0.8.9"
12+ ExplicitImports = " 1"
1113EzXML = " 1"
1214HybridSystems = " 0.4"
1315LazySets = " 3, 4, 5"
Original file line number Diff line number Diff line change 11using SpaceExParser, Test
2- import Aqua
2+ import Aqua, ExplicitImports
3+
4+ @testset " ExplicitImports tests" begin
5+ ignores = (:_ishyperplanar , :_ishalfspace )
6+ @test isnothing (ExplicitImports. check_all_explicit_imports_are_public (SpaceExParser;
7+ ignore= ignores))
8+ @test isnothing (ExplicitImports. check_all_explicit_imports_via_owners (SpaceExParser))
9+ ignores = (ignores... , :parse )
10+ @test isnothing (ExplicitImports. check_all_qualified_accesses_are_public (SpaceExParser;
11+ ignore= ignores))
12+ @test isnothing (ExplicitImports. check_all_qualified_accesses_via_owners (SpaceExParser))
13+ @test isnothing (ExplicitImports. check_no_implicit_imports (SpaceExParser))
14+ @test isnothing (ExplicitImports. check_no_self_qualified_accesses (SpaceExParser))
15+ @test isnothing (ExplicitImports. check_no_stale_explicit_imports (SpaceExParser))
16+ end
317
418@testset " Aqua tests" begin
519 Aqua. test_all (SpaceExParser)
You can’t perform that action at this time.
0 commit comments