Skip to content

Commit eb50cb4

Browse files
authored
Test for bivariate points (#312)
1 parent aa301f9 commit eb50cb4

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ApproxFunOrthogonalPolynomialsPolynomialsExt = "Polynomials"
3030
ApproxFunOrthogonalPolynomialsStaticExt = "Static"
3131

3232
[compat]
33-
ApproxFunBase = "0.8.58, 0.9.15"
33+
ApproxFunBase = "0.8.60, 0.9.16"
3434
ApproxFunBaseTest = "0.1"
3535
Aqua = "0.7"
3636
BandedMatrices = "0.16, 0.17"

test/MultivariateTest.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,12 @@ include("testutils.jl")
7272
end
7373
end
7474

75+
@testset "points" begin
76+
S = Chebyshev(1..2) Chebyshev(3..4)
77+
@test all(p domain(factor(S, 1)) for p in points(S, 10, 10)[1])
78+
@test all(p domain(factor(S, 2)) for p in points(S, 10, 10)[2])
79+
end
80+
7581
@testset "Evaluation" begin
7682

7783
@testset "2D" begin

0 commit comments

Comments
 (0)