Skip to content

Commit 2547a4e

Browse files
Remove unnecessary tests
1 parent 4023dd2 commit 2547a4e

File tree

4 files changed

+6
-33
lines changed

4 files changed

+6
-33
lines changed

test/ambiguity.jl

Lines changed: 0 additions & 11 deletions
This file was deleted.

test/basic_variables_and_operations.jl

Lines changed: 0 additions & 17 deletions
This file was deleted.

test/derivatives.jl

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ using Test
44
# Derivatives
55
@Param t σ ρ β
66
@Unknown x(t) y(t) z(t)
7-
@Deriv D'~t
8-
dsin = D(sin(t))
9-
expand_derivatives(dsin)
7+
@Deriv D'~t D2''~t
8+
9+
@test expand_derivatives(D(t)) == 1
10+
@test expand_derivatives(D(D(t))) == 0
1011

12+
dsin = D(sin(t))
1113
@test expand_derivatives(dsin) == cos(t)
14+
1215
dcsch = D(csch(t))
1316
@test expand_derivatives(dcsch) == simplify_constants(coth(t) * csch(t) * -1)
1417

test/runtests.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
using ModelingToolkit, Test
22

33
@testset "Parsing Test" begin include("variable_parsing.jl") end
4-
@testset "Basic Variables and Operations" begin include("basic_variables_and_operations.jl") end
54
@testset "Differentiation Test" begin include("derivatives.jl") end
65
@testset "Simplify Test" begin include("simplify.jl") end
7-
@testset "Ambiguity Test" begin include("ambiguity.jl") end
86
@testset "System Construction Test" begin include("system_construction.jl") end

0 commit comments

Comments
 (0)