forked from s_ranjbar/city_retrofit
18 lines
574 B
Python
18 lines
574 B
Python
"""
|
|
TestUsageCatalog
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
Copyright © 2022 Concordia CERC group
|
|
Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
|
"""
|
|
|
|
from unittest import TestCase
|
|
from catalog_factories.usage_catalog_factory import UsageCatalogFactory
|
|
|
|
|
|
class TestConstructionCatalog(TestCase):
|
|
def test_comnet_catalog(self):
|
|
catalog = UsageCatalogFactory('comnet').catalog
|
|
self.assertIsNotNone(catalog, 'catalog is none')
|
|
content = catalog.entries()
|
|
self.assertEqual(len(content.usages), 32, 'Wrong number of usages')
|