forked from pybamm-team/PyBaMM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__init__.py
41 lines (39 loc) · 1.48 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#
# Root of the tests module.
# Provides access to all shared functionality
#
from .integration.test_models.standard_model_tests import (
StandardModelTest,
OptimisationsTest,
)
from .integration.test_models.standard_output_tests import StandardOutputTests
from .integration.test_models.standard_output_comparison import StandardOutputComparison
from .unit.test_models.test_full_battery_models.test_lithium_ion.base_lithium_ion_tests import (
BaseUnitTestLithiumIon,
)
from .unit.test_models.test_full_battery_models.test_lithium_ion.base_lithium_ion_half_cell_tests import (
BaseUnitTestLithiumIonHalfCell,
)
from .integration.test_models.test_full_battery_models.test_lithium_ion.base_lithium_ion_tests import (
BaseIntegrationTestLithiumIon,
)
from .integration.test_models.test_full_battery_models.test_lithium_ion.base_lithium_ion_half_cell_tests import (
BaseIntegrationTestLithiumIonHalfCell,
)
from .shared import (
get_mesh_for_testing,
get_p2d_mesh_for_testing,
get_size_distribution_mesh_for_testing,
get_1p1d_mesh_for_testing,
get_2p1d_mesh_for_testing,
get_cylindrical_mesh_for_testing,
get_discretisation_for_testing,
get_p2d_discretisation_for_testing,
get_size_distribution_disc_for_testing,
get_1p1d_discretisation_for_testing,
get_2p1d_discretisation_for_testing,
get_unit_2p1D_mesh_for_testing,
get_cylindrical_discretisation_for_testing,
get_base_model_with_battery_geometry,
)
from .testcase import TestCase