@@ -2,41 +2,41 @@ using Test
2
2
using GraphPlot # For plotting tests
3
3
using Neo4j
4
4
using DistributedFactorGraphs
5
- using IncrementalInference
5
+ # using IncrementalInference
6
6
7
7
# Instantiate the APIs that you would like to test here
8
8
# Can do duplicates with different parameters.
9
- apis = [
10
- GraphsDFG {NoSolverParams} (),
11
- LightDFG {NoSolverParams} (),
12
- MetaGraphsDFG {NoSolverParams} (),
13
- SymbolDFG {NoSolverParams} (),
14
- CloudGraphsDFG {SolverParams} (" localhost" , 7474 , " neo4j" , " test" ,
15
- " testUser" , " testRobot" , " testSession" ,
16
- nothing ,
17
- nothing ,
18
- IncrementalInference. decodePackedType,
19
- IncrementalInference. rebuildFactorMetadata!,
20
- solverParams= SolverParams ())
21
- ]
22
- for api in apis
23
- @testset " Testing Driver: $(typeof (api)) " begin
24
- @info " Testing Driver: $(api) "
25
- global dfg = api
26
- include (" iifInterfaceTests.jl" )
27
- end
28
- end
29
-
30
- # Test each interface
31
- # apis = [GraphsDFG, MetaGraphsDFG, SymbolDFG, LightDFG]
9
+ # apis = [
10
+ # GraphsDFG{NoSolverParams}(),
11
+ # LightDFG{NoSolverParams}(),
12
+ # MetaGraphsDFG{NoSolverParams}(),
13
+ # SymbolDFG{NoSolverParams}(),
14
+ # CloudGraphsDFG{SolverParams}("localhost", 7474, "neo4j", "test",
15
+ # "testUser", "testRobot", "testSession",
16
+ # nothing,
17
+ # nothing,
18
+ # IncrementalInference.decodePackedType,
19
+ # IncrementalInference.rebuildFactorMetadata!,
20
+ # solverParams=SolverParams())
21
+ # ]
32
22
# for api in apis
33
- # @testset "Testing Driver: $(api)" begin
23
+ # @testset "Testing Driver: $(typeof( api) )" begin
34
24
# @info "Testing Driver: $(api)"
35
- # global testDFGAPI = api
36
- # include("interfaceTests .jl")
25
+ # global dfg = api
26
+ # include("iifInterfaceTests .jl")
37
27
# end
38
28
# end
39
29
30
+ # Test each interface
31
+ apis = [GraphsDFG, MetaGraphsDFG, SymbolDFG, LightDFG]
32
+ for api in apis
33
+ @testset " Testing Driver: $(api) " begin
34
+ @info " Testing Driver: $(api) "
35
+ global testDFGAPI = api
36
+ include (" interfaceTests.jl" )
37
+ end
38
+ end
39
+
40
40
# Test special cases
41
41
42
42
@testset " Plotting Tests" begin
0 commit comments