Skip to content

Commit

Permalink
Merge pull request #484 from gridap/more_tests_in_cell_fields
Browse files Browse the repository at this point in the history
Adding more tests to CellFieldsTests
  • Loading branch information
fverdugo authored Nov 27, 2020
2 parents 2f64559 + b561691 commit 3b7fc18
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/CellDataTests/CellFieldsTests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ jnf_S = jump(n_S⋅∇(f))
jnfx_S = jnf_S(x_S)
test_array(jnfx_S,0*collect(jnfx_S))

h = CellField(rand(num_cells(trian_S)),trian_S)*jump((f))
hx_S = h(x_S)
test_array(hx_S,collect(hx_S))

h = 3*mean(f)jump(n_S(f))
hx_S = h(x_S)
test_array(hx_S,0*collect(hx_S))
Expand Down

0 comments on commit 3b7fc18

Please sign in to comment.