Skip to content

Commit 4d97b15

Browse files
committed
Test JacobiZ
1 parent 9434ec4 commit 4d97b15

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
deps/deps.jl
55
test/.DS_Store
66
.DS_Store
7+
Manifest.toml

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ApproxFunOrthogonalPolynomials"
22
uuid = "b70543e2-c0d9-56b8-a290-0d4d6d4de211"
3-
version = "0.1"
3+
version = "0.1.0"
44

55
[deps]
66
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"

test/OperatorTest.jl

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using ApproxFunOrthogonalPolynomials, ApproxFunBase, BlockBandedMatrices, LinearAlgebra, Test
2-
import ApproxFunBase: Multiplication,InterlaceOperator, Block, ∞,
3-
testfunctional, testbandedoperator, testraggedbelowoperator, testinfoperator, testblockbandedoperator
2+
import ApproxFunBase: Multiplication,InterlaceOperator, Block, ∞,
3+
testfunctional, testbandedoperator, testraggedbelowoperator, testinfoperator, testblockbandedoperator
4+
import ApproxFunOrthogonalPolynomials: JacobiZ
45

56
@testset "Operator" begin
67
@testset "Evaluation" begin
@@ -294,4 +295,10 @@ using ApproxFunOrthogonalPolynomials, ApproxFunBase, BlockBandedMatrices, Linea
294295
testraggedbelowoperator(io)
295296
end
296297
end
298+
299+
@testset "JacobiZ" begin
300+
testbandedoperator(JacobiZ(Chebyshev(), 0.1))
301+
end
297302
end
303+
304+

0 commit comments

Comments
 (0)