Coverage for tests/test_common.py: 44%
23 statements
« prev ^ index » next coverage.py v7.3.2, created at 2023-12-12 14:15 +0000
« prev ^ index » next coverage.py v7.3.2, created at 2023-12-12 14:15 +0000
1# This file is part of cell_coadds.
2#
3# Developed for the LSST Data Management System.
4# This product includes software developed by the LSST Project
5# (https://www.lsst.org).
6# See the COPYRIGHT file at the top-level directory of this distribution
7# for details of code ownership.
8#
9# This program is free software: you can redistribute it and/or modify
10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation, either version 3 of the License, or
12# (at your option) any later version.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program. If not, see <https://www.gnu.org/licenses/>.
22import unittest
24import lsst.cell_coadds.test_utils as test_utils
25import lsst.utils.tests
26from lsst.cell_coadds import CoaddUnits, CommonComponents, PatchIdentifiers
29class CommonComponentsTestCase(lsst.utils.tests.TestCase):
30 """Test the construction and interfaces of CommonComponents."""
32 def setUp(self) -> None: # noqa: D102
33 self.units = CoaddUnits.nJy
34 quantum_data_id = test_utils.generate_data_id()
35 self.wcs = test_utils.generate_wcs()
36 self.band = quantum_data_id.get("band", None)
37 self.identifiers = PatchIdentifiers.from_data_id(quantum_data_id)
38 self.common = CommonComponents(
39 units=self.units, wcs=self.wcs, band=self.band, identifiers=self.identifiers
40 )
42 def test_commonComponentsProperties(self):
43 """Test the common properties equal those in the common attribute."""
44 self.assertEqual(self.common.units, self.units)
45 self.assertEqual(self.common.wcs, self.wcs)
46 self.assertEqual(self.common.band, self.band)
47 self.assertEqual(self.common.identifiers, self.identifiers)
50class TestMemory(lsst.utils.tests.MemoryTestCase):
51 """Check for resource/memory leaks."""
54def setup_module(module): # noqa: D103
55 lsst.utils.tests.init()
58if __name__ == "__main__": 58 ↛ 59line 58 didn't jump to line 59, because the condition on line 58 was never true
59 lsst.utils.tests.init()
60 unittest.main()