changeset 679:54ce3f9771e5 feature/laplace_opset

Add inferred tests to standard constructor
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Sat, 06 Feb 2021 15:26:14 +0100
parents 730565f7cc2e
children 3cd582257072
files test/testSbpOperators.jl
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/test/testSbpOperators.jl	Sat Feb 06 15:18:05 2021 +0100
+++ b/test/testSbpOperators.jl	Sat Feb 06 15:26:14 2021 +0100
@@ -367,6 +367,7 @@
             @test L.H_boundary == Hb_dict
 
             @test L isa TensorMapping{T,1,1}  where T
+            @inferred Laplace(Δ,H,Hi,e_dict,d_dict,Hb_dict)
         end
         @testset "3D" begin
             # Create all tensor mappings included in Laplace
@@ -417,6 +418,7 @@
             @test L.d == d_dict
             @test L.H_boundary == Hb_dict
             @test L isa TensorMapping{T,3,3} where T
+            @inferred Laplace(Δ,H,Hi,e_dict,d_dict,Hb_dict)
         end
     end