orionis 0.362.0__py3-none-any.whl → 0.364.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. orionis/console/output/console.py +1 -1
  2. orionis/container/container.py +2 -2
  3. orionis/container/exceptions/__init__.py +4 -4
  4. orionis/container/resolver/resolver.py +2 -2
  5. orionis/container/validators/implements.py +2 -2
  6. orionis/container/validators/is_abstract_class.py +1 -1
  7. orionis/container/validators/is_concrete_class.py +1 -1
  8. orionis/container/validators/is_instance.py +1 -1
  9. orionis/foundation/config/testing/entities/testing.py +1 -1
  10. orionis/metadata/framework.py +1 -1
  11. orionis/services/asynchrony/coroutines.py +2 -2
  12. orionis/services/environment/{dot_env.py → core/dot_env.py} +2 -3
  13. orionis/services/environment/{types.py → dynamic/types.py} +1 -2
  14. orionis/services/environment/env.py +1 -20
  15. orionis/services/environment/exceptions/__init__.py +7 -0
  16. orionis/services/environment/helpers/functions.py +21 -0
  17. orionis/services/{parsers/exceptions/exception_parser.py → formatter/exceptions/parser.py} +1 -1
  18. orionis/services/{parsers → formatter}/serializer.py +1 -1
  19. orionis/services/introspection/abstract/contracts/__init__.py +0 -0
  20. orionis/services/introspection/abstract/{reflection_abstract.py → reflection.py} +7 -5
  21. orionis/services/introspection/callables/contracts/__init__.py +0 -0
  22. orionis/services/introspection/callables/contracts/reflection.py +141 -0
  23. orionis/services/introspection/callables/{reflection_callable.py → reflection.py} +7 -4
  24. orionis/services/introspection/concretes/contracts/__init__.py +0 -0
  25. orionis/services/introspection/{contracts/reflection_concrete.py → concretes/contracts/concrete.py} +1 -1
  26. orionis/services/introspection/concretes/{reflection_concrete.py → reflection.py} +8 -6
  27. orionis/services/introspection/dependencies/contracts/__init__.py +0 -0
  28. orionis/services/introspection/dependencies/entities/callable_dependencies.py +1 -1
  29. orionis/services/introspection/dependencies/entities/class_dependencies.py +1 -1
  30. orionis/services/introspection/dependencies/entities/method_dependencies.py +1 -1
  31. orionis/services/introspection/dependencies/entities/resolved_dependencies.py +1 -2
  32. orionis/services/introspection/dependencies/{reflect_dependencies.py → reflection.py} +2 -2
  33. orionis/services/introspection/exceptions/__init__.py +9 -0
  34. orionis/services/introspection/instances/contracts/__init__.py +0 -0
  35. orionis/services/introspection/instances/{reflection_instance.py → reflection.py} +7 -5
  36. orionis/services/introspection/modules/contracts/__init__.py +0 -0
  37. orionis/services/introspection/modules/{reflection_module.py → reflection.py} +5 -3
  38. orionis/services/introspection/objects/__init__.py +0 -0
  39. orionis/services/introspection/{inspection.py → objects/types.py} +1 -1
  40. orionis/services/introspection/reflection.py +27 -27
  41. orionis/services/paths/exceptions/__init__.py +7 -0
  42. orionis/services/paths/resolver.py +4 -2
  43. orionis/services/system/runtime/__init__.py +0 -0
  44. orionis/support/standard/exceptions/__init__.py +5 -0
  45. orionis/support/standard/std.py +1 -1
  46. orionis/support/wrapper/__init__.py +5 -0
  47. orionis/test/contracts/{test_unit.py → unit_test.py} +1 -1
  48. orionis/test/core/__init__.py +0 -0
  49. orionis/test/{suite/test_unit.py → core/unit_test.py} +11 -7
  50. orionis/test/entities/test_result.py +1 -1
  51. orionis/test/enums/__init__.py +7 -0
  52. orionis/test/exceptions/__init__.py +13 -0
  53. orionis/test/logs/history.py +1 -2
  54. orionis/test/output/dumper.py +1 -1
  55. orionis/test/output/printer.py +2 -2
  56. orionis/test/test_suite.py +2 -2
  57. orionis/unittesting.py +8 -8
  58. {orionis-0.362.0.dist-info → orionis-0.364.0.dist-info}/METADATA +1 -1
  59. {orionis-0.362.0.dist-info → orionis-0.364.0.dist-info}/RECORD +109 -98
  60. tests/foundation/config/testing/test_foundation_config_testing.py +1 -1
  61. tests/services/asynchrony/test_services_asynchrony_coroutine.py +1 -1
  62. tests/services/inspection/dependencies/test_reflect_dependencies.py +1 -1
  63. tests/services/inspection/reflection/test_reflection_abstract.py +1 -1
  64. tests/services/inspection/reflection/test_reflection_callable.py +2 -2
  65. tests/services/inspection/reflection/test_reflection_concrete.py +1 -1
  66. tests/services/inspection/reflection/test_reflection_instance.py +1 -1
  67. tests/services/inspection/reflection/test_reflection_module.py +2 -3
  68. tests/services/parsers/test_services_parser_exceptions.py +1 -1
  69. tests/services/path/test_services_resolver.py +1 -1
  70. tests/support/standard/test_services_std.py +1 -1
  71. tests/support/wrapper/test_services_wrapper_docdict.py +1 -1
  72. tests/testing/test_testing_result.py +5 -1
  73. tests/testing/test_testing_unit.py +10 -2
  74. /orionis/container/exceptions/{attribute_error.py → attribute.py} +0 -0
  75. /orionis/container/exceptions/{container_exception.py → exception.py} +0 -0
  76. /orionis/container/exceptions/{type_error_exception.py → type.py} +0 -0
  77. /orionis/container/exceptions/{value_exception.py → value.py} +0 -0
  78. /orionis/services/{introspection/contracts → environment/core}/__init__.py +0 -0
  79. /orionis/services/{parsers → environment/dynamic}/__init__.py +0 -0
  80. /orionis/services/environment/exceptions/{environment_value_exception.py → exception.py} +0 -0
  81. /orionis/services/environment/exceptions/{environment_value_error.py → value.py} +0 -0
  82. /orionis/services/{parsers/contracts → environment/helpers}/__init__.py +0 -0
  83. /orionis/services/{parsers/exceptions → formatter}/__init__.py +0 -0
  84. /orionis/{support/wrapper/dicts → services/formatter/exceptions}/__init__.py +0 -0
  85. /orionis/{test/suite → services/formatter/exceptions/contracts}/__init__.py +0 -0
  86. /orionis/services/{parsers/contracts/exception_parser.py → formatter/exceptions/contracts/parser.py} +0 -0
  87. /orionis/services/introspection/{contracts/reflection_abstract.py → abstract/contracts/reflection.py} +0 -0
  88. /orionis/services/introspection/{contracts/reflect_dependencies.py → dependencies/contracts/reflection.py} +0 -0
  89. /orionis/services/introspection/exceptions/{reflection_attribute_error.py → attribute.py} +0 -0
  90. /orionis/services/introspection/exceptions/{reflection_type_error.py → type.py} +0 -0
  91. /orionis/services/introspection/exceptions/{reflection_value_error.py → value.py} +0 -0
  92. /orionis/services/introspection/{contracts/reflection_instance.py → instances/contracts/reflection.py} +0 -0
  93. /orionis/services/introspection/{contracts/reflection_module.py → modules/contracts/reflection.py} +0 -0
  94. /orionis/services/paths/exceptions/{path_value_exceptions.py → exception.py} +0 -0
  95. /orionis/services/paths/exceptions/{not_found_exceptions.py → file.py} +0 -0
  96. /orionis/services/system/{runtime_imports.py → runtime/imports.py} +0 -0
  97. /orionis/support/standard/exceptions/{std_value_exception.py → value.py} +0 -0
  98. /orionis/support/wrapper/{dicts/dot_dict.py → dot_dict.py} +0 -0
  99. /orionis/test/enums/{test_mode.py → execution_mode.py} +0 -0
  100. /orionis/test/enums/{test_status.py → status.py} +0 -0
  101. /orionis/test/exceptions/{test_config_exception.py → config.py} +0 -0
  102. /orionis/test/exceptions/{test_failure_exception.py → failure.py} +0 -0
  103. /orionis/test/exceptions/{test_persistence_error.py → persistence.py} +0 -0
  104. /orionis/test/exceptions/{test_runtime_error.py → runtime.py} +0 -0
  105. /orionis/test/exceptions/{test_value_error.py → value.py} +0 -0
  106. {orionis-0.362.0.dist-info → orionis-0.364.0.dist-info}/WHEEL +0 -0
  107. {orionis-0.362.0.dist-info → orionis-0.364.0.dist-info}/licenses/LICENCE +0 -0
  108. {orionis-0.362.0.dist-info → orionis-0.364.0.dist-info}/top_level.txt +0 -0
  109. {orionis-0.362.0.dist-info → orionis-0.364.0.dist-info}/zip-safe +0 -0
@@ -1,10 +1,10 @@
1
1
  from typing import Any, Type
2
- from orionis.services.introspection.abstract.reflection_abstract import ReflectionAbstract
3
- from orionis.services.introspection.callables.reflection_callable import ReflectionCallable
4
- from orionis.services.introspection.concretes.reflection_concrete import ReflectionConcrete
5
- from orionis.services.introspection.inspection import Inspection
6
- from orionis.services.introspection.instances.reflection_instance import ReflectionInstance
7
- from orionis.services.introspection.modules.reflection_module import ReflectionModule
2
+ from orionis.services.introspection.abstract.reflection import ReflectionAbstract
3
+ from orionis.services.introspection.callables.reflection import ReflectionCallable
4
+ from orionis.services.introspection.concretes.reflection import ReflectionConcrete
5
+ from orionis.services.introspection.objects.types import Type
6
+ from orionis.services.introspection.instances.reflection import ReflectionInstance
7
+ from orionis.services.introspection.modules.reflection import ReflectionModule
8
8
 
9
9
  class Reflection:
10
10
  """
@@ -115,7 +115,7 @@ class Reflection:
115
115
  bool
116
116
  True if the object is abstract, False otherwise.
117
117
  """
118
- return Inspection(obj).isAbstract()
118
+ return Type(obj).isAbstract()
119
119
 
120
120
  @staticmethod
121
121
  def isAsyncGen(obj: Any) -> bool:
@@ -132,7 +132,7 @@ class Reflection:
132
132
  bool
133
133
  True if the object is an async generator, False otherwise.
134
134
  """
135
- return Inspection(obj).isAsyncGen()
135
+ return Type(obj).isAsyncGen()
136
136
 
137
137
  @staticmethod
138
138
  def isAsyncGenFunction(obj: Any) -> bool:
@@ -149,7 +149,7 @@ class Reflection:
149
149
  bool
150
150
  True if the object is an async generator function, False otherwise.
151
151
  """
152
- return Inspection(obj).isAsyncGenFunction()
152
+ return Type(obj).isAsyncGenFunction()
153
153
 
154
154
  @staticmethod
155
155
  def isAwaitable(obj: Any) -> bool:
@@ -166,7 +166,7 @@ class Reflection:
166
166
  bool
167
167
  True if the object is awaitable, False otherwise.
168
168
  """
169
- return Inspection(obj).isAwaitable()
169
+ return Type(obj).isAwaitable()
170
170
 
171
171
  @staticmethod
172
172
  def isBuiltin(obj: Any) -> bool:
@@ -183,7 +183,7 @@ class Reflection:
183
183
  bool
184
184
  True if the object is a built-in, False otherwise.
185
185
  """
186
- return Inspection(obj).isBuiltin()
186
+ return Type(obj).isBuiltin()
187
187
 
188
188
  @staticmethod
189
189
  def isClass(obj: Any) -> bool:
@@ -200,7 +200,7 @@ class Reflection:
200
200
  bool
201
201
  True if the object is a class, False otherwise.
202
202
  """
203
- return Inspection(obj).isClass()
203
+ return Type(obj).isClass()
204
204
 
205
205
  @staticmethod
206
206
  def isCode(obj: Any) -> bool:
@@ -217,7 +217,7 @@ class Reflection:
217
217
  bool
218
218
  True if the object is a code object, False otherwise.
219
219
  """
220
- return Inspection(obj).isCode()
220
+ return Type(obj).isCode()
221
221
 
222
222
  @staticmethod
223
223
  def isCoroutine(obj: Any) -> bool:
@@ -234,7 +234,7 @@ class Reflection:
234
234
  bool
235
235
  True if the object is a coroutine, False otherwise.
236
236
  """
237
- return Inspection(obj).isCoroutine()
237
+ return Type(obj).isCoroutine()
238
238
 
239
239
  @staticmethod
240
240
  def isCoroutineFunction(obj: Any) -> bool:
@@ -251,7 +251,7 @@ class Reflection:
251
251
  bool
252
252
  True if the object is a coroutine function, False otherwise.
253
253
  """
254
- return Inspection(obj).isCoroutineFunction()
254
+ return Type(obj).isCoroutineFunction()
255
255
 
256
256
  @staticmethod
257
257
  def isDataDescriptor(obj: Any) -> bool:
@@ -268,7 +268,7 @@ class Reflection:
268
268
  bool
269
269
  True if the object is a data descriptor, False otherwise.
270
270
  """
271
- return Inspection(obj).isDataDescriptor()
271
+ return Type(obj).isDataDescriptor()
272
272
 
273
273
  @staticmethod
274
274
  def isFrame(obj: Any) -> bool:
@@ -285,7 +285,7 @@ class Reflection:
285
285
  bool
286
286
  True if the object is a frame object, False otherwise.
287
287
  """
288
- return Inspection(obj).isFrame()
288
+ return Type(obj).isFrame()
289
289
 
290
290
  @staticmethod
291
291
  def isFunction(obj: Any) -> bool:
@@ -302,7 +302,7 @@ class Reflection:
302
302
  bool
303
303
  True if the object is a function, False otherwise.
304
304
  """
305
- return Inspection(obj).isFunction()
305
+ return Type(obj).isFunction()
306
306
 
307
307
  @staticmethod
308
308
  def isGenerator(obj: Any) -> bool:
@@ -319,7 +319,7 @@ class Reflection:
319
319
  bool
320
320
  True if the object is a generator, False otherwise.
321
321
  """
322
- return Inspection(obj).isGenerator()
322
+ return Type(obj).isGenerator()
323
323
 
324
324
  @staticmethod
325
325
  def isGeneratorFunction(obj: Any) -> bool:
@@ -336,7 +336,7 @@ class Reflection:
336
336
  bool
337
337
  True if the object is a generator function, False otherwise.
338
338
  """
339
- return Inspection(obj).isGeneratorFunction()
339
+ return Type(obj).isGeneratorFunction()
340
340
 
341
341
  @staticmethod
342
342
  def isGetSetDescriptor(obj: Any) -> bool:
@@ -353,7 +353,7 @@ class Reflection:
353
353
  bool
354
354
  True if the object is a getset descriptor, False otherwise.
355
355
  """
356
- return Inspection(obj).isGetSetDescriptor()
356
+ return Type(obj).isGetSetDescriptor()
357
357
 
358
358
  @staticmethod
359
359
  def isMemberDescriptor(obj: Any) -> bool:
@@ -370,7 +370,7 @@ class Reflection:
370
370
  bool
371
371
  True if the object is a member descriptor, False otherwise.
372
372
  """
373
- return Inspection(obj).isMemberDescriptor()
373
+ return Type(obj).isMemberDescriptor()
374
374
 
375
375
  @staticmethod
376
376
  def isMethod(obj: Any) -> bool:
@@ -387,7 +387,7 @@ class Reflection:
387
387
  bool
388
388
  True if the object is a method, False otherwise.
389
389
  """
390
- return Inspection(obj).isMethod()
390
+ return Type(obj).isMethod()
391
391
 
392
392
  @staticmethod
393
393
  def isMethodDescriptor(obj: Any) -> bool:
@@ -404,7 +404,7 @@ class Reflection:
404
404
  bool
405
405
  True if the object is a method descriptor, False otherwise.
406
406
  """
407
- return Inspection(obj).isMethodDescriptor()
407
+ return Type(obj).isMethodDescriptor()
408
408
 
409
409
  @staticmethod
410
410
  def isModule(obj: Any) -> bool:
@@ -421,7 +421,7 @@ class Reflection:
421
421
  bool
422
422
  True if the object is a module, False otherwise.
423
423
  """
424
- return Inspection(obj).isModule()
424
+ return Type(obj).isModule()
425
425
 
426
426
  @staticmethod
427
427
  def isRoutine(obj: Any) -> bool:
@@ -438,7 +438,7 @@ class Reflection:
438
438
  bool
439
439
  True if the object is a routine, False otherwise.
440
440
  """
441
- return Inspection(obj).isRoutine()
441
+ return Type(obj).isRoutine()
442
442
 
443
443
  @staticmethod
444
444
  def isTraceback(obj: Any) -> bool:
@@ -455,4 +455,4 @@ class Reflection:
455
455
  bool
456
456
  True if the object is a traceback object, False otherwise.
457
457
  """
458
- return Inspection(obj).isTraceback()
458
+ return Type(obj).isTraceback()
@@ -0,0 +1,7 @@
1
+ from .exception import OrionisPathValueException
2
+ from .file import OrionisFileNotFoundException
3
+
4
+ __all__ = [
5
+ "OrionisPathValueException",
6
+ "OrionisFileNotFoundException"
7
+ ]
@@ -1,8 +1,10 @@
1
1
  import os
2
2
  from pathlib import Path
3
3
  from orionis.services.paths.contracts.resolver import IResolver
4
- from orionis.services.paths.exceptions.not_found_exceptions import OrionisFileNotFoundException
5
- from orionis.services.paths.exceptions.path_value_exceptions import OrionisPathValueException
4
+ from orionis.services.paths.exceptions import (
5
+ OrionisFileNotFoundException,
6
+ OrionisPathValueException
7
+ )
6
8
 
7
9
  class Resolver(IResolver):
8
10
  """
File without changes
@@ -0,0 +1,5 @@
1
+ from .value import OrionisStdValueException
2
+
3
+ __all__ = [
4
+ "OrionisStdValueException"
5
+ ]
@@ -1,5 +1,5 @@
1
1
  from orionis.support.standard.contracts.std import IStdClass
2
- from orionis.support.standard.exceptions.std_value_exception import OrionisStdValueException
2
+ from orionis.support.standard.exceptions import OrionisStdValueException
3
3
 
4
4
  class StdClass(IStdClass):
5
5
  """
@@ -0,0 +1,5 @@
1
+ from .dot_dict import DotDict
2
+
3
+ __all__ = [
4
+ "DotDict"
5
+ ]
@@ -1,7 +1,7 @@
1
1
  from abc import ABC, abstractmethod
2
2
  from typing import Any, Dict, List, Optional
3
3
  from orionis.services.system.workers import Workers
4
- from orionis.test.enums.test_mode import ExecutionMode
4
+ from orionis.test.enums.execution_mode import ExecutionMode
5
5
 
6
6
  class IUnitTest(ABC):
7
7
 
File without changes
@@ -10,16 +10,20 @@ from contextlib import redirect_stdout, redirect_stderr
10
10
  from datetime import datetime
11
11
  from pathlib import Path
12
12
  from typing import Any, Dict, List, Optional, Tuple
13
- from orionis.services.introspection.instances.reflection_instance import ReflectionInstance
13
+ from orionis.services.introspection.instances.reflection import ReflectionInstance
14
14
  from orionis.services.system.workers import Workers
15
15
  from orionis.test.entities.test_result import TestResult
16
- from orionis.test.enums.test_mode import ExecutionMode
17
- from orionis.test.enums.test_status import TestStatus
18
- from orionis.test.exceptions.test_failure_exception import OrionisTestFailureException
19
- from orionis.test.exceptions.test_persistence_error import OrionisTestPersistenceError
20
- from orionis.test.exceptions.test_value_error import OrionisTestValueError
16
+ from orionis.test.enums import (
17
+ ExecutionMode,
18
+ TestStatus
19
+ )
20
+ from orionis.test.exceptions import (
21
+ OrionisTestFailureException,
22
+ OrionisTestPersistenceError,
23
+ OrionisTestValueError
24
+ )
21
25
  from orionis.test.logs.history import TestHistory
22
- from orionis.test.contracts.test_unit import IUnitTest
26
+ from orionis.test.contracts.unit_test import IUnitTest
23
27
  from orionis.test.output.printer import TestPrinter
24
28
  from orionis.test.view.render import TestingResultRender
25
29
 
@@ -1,6 +1,6 @@
1
1
  from dataclasses import dataclass, field
2
2
  from typing import Any, Optional
3
- from orionis.test.enums.test_status import TestStatus
3
+ from orionis.test.enums import TestStatus
4
4
 
5
5
  @dataclass(frozen=True, kw_only=True)
6
6
  class TestResult:
@@ -0,0 +1,7 @@
1
+ from .execution_mode import ExecutionMode
2
+ from .status import TestStatus
3
+
4
+ __all__ = [
5
+ "ExecutionMode",
6
+ "TestStatus"
7
+ ]
@@ -0,0 +1,13 @@
1
+ from .config import OrionisTestConfigException
2
+ from .failure import OrionisTestFailureException
3
+ from .persistence import OrionisTestPersistenceError
4
+ from .runtime import OrionisTestRuntimeError
5
+ from .value import OrionisTestValueError
6
+
7
+ __all__ = [
8
+ "OrionisTestConfigException",
9
+ "OrionisTestFailureException",
10
+ "OrionisTestPersistenceError",
11
+ "OrionisTestRuntimeError",
12
+ "OrionisTestValueError"
13
+ ]
@@ -4,8 +4,7 @@ import sqlite3
4
4
  from pathlib import Path
5
5
  from typing import Dict, List, Optional, Tuple
6
6
  from orionis.services.environment.env import Env
7
- from orionis.test.exceptions.test_persistence_error import OrionisTestPersistenceError
8
- from orionis.test.exceptions.test_value_error import OrionisTestValueError
7
+ from orionis.test.exceptions import OrionisTestPersistenceError, OrionisTestValueError
9
8
  from orionis.test.contracts.history import ITestHistory
10
9
 
11
10
  class TestHistory(ITestHistory):
@@ -1,6 +1,6 @@
1
1
  import os
2
2
  import sys
3
- from orionis.test.exceptions.test_runtime_error import OrionisTestRuntimeError
3
+ from orionis.test.exceptions.runtime import OrionisTestRuntimeError
4
4
  from orionis.test.contracts.dumper import ITestDumper
5
5
 
6
6
  class TestDumper(ITestDumper):
@@ -7,9 +7,9 @@ from rich.panel import Panel
7
7
  from rich.syntax import Syntax
8
8
  from rich.table import Table
9
9
  from rich.text import Text
10
- from orionis.services.introspection.instances.reflection_instance import ReflectionInstance
10
+ from orionis.services.introspection.instances.reflection import ReflectionInstance
11
11
  from orionis.test.contracts.printer import ITestPrinter
12
- from orionis.test.enums.test_status import TestStatus
12
+ from orionis.test.enums import TestStatus
13
13
 
14
14
  class TestPrinter(ITestPrinter):
15
15
 
@@ -1,8 +1,8 @@
1
1
  import re
2
2
  from os import walk
3
3
  from orionis.foundation.config.testing.entities.testing import Testing as Configuration
4
- from orionis.test.exceptions.test_config_exception import OrionisTestConfigException
5
- from orionis.test.suite.test_unit import UnitTest
4
+ from orionis.test.exceptions import OrionisTestConfigException
5
+ from orionis.test.core.unit_test import UnitTest
6
6
 
7
7
  class TestSuite:
8
8
  """
orionis/unittesting.py CHANGED
@@ -10,19 +10,19 @@ from orionis.test.logs.history import TestHistory
10
10
  from orionis.test.entities.test_result import TestResult
11
11
 
12
12
  # Import enums for execution mode and test status
13
- from orionis.test.enums.test_mode import ExecutionMode
14
- from orionis.test.enums.test_status import TestStatus
13
+ from orionis.test.enums.execution_mode import ExecutionMode
14
+ from orionis.test.enums.status import TestStatus
15
15
 
16
16
  # Import custom exception for test failures
17
- from orionis.test.exceptions.test_failure_exception import OrionisTestFailureException
18
- from orionis.test.exceptions.test_config_exception import OrionisTestConfigException
19
- from orionis.test.exceptions.test_persistence_error import OrionisTestPersistenceError
20
- from orionis.test.exceptions.test_runtime_error import OrionisTestRuntimeError
21
- from orionis.test.exceptions.test_value_error import OrionisTestValueError
17
+ from orionis.test.exceptions.failure import OrionisTestFailureException
18
+ from orionis.test.exceptions.config import OrionisTestConfigException
19
+ from orionis.test.exceptions.persistence import OrionisTestPersistenceError
20
+ from orionis.test.exceptions.runtime import OrionisTestRuntimeError
21
+ from orionis.test.exceptions.value import OrionisTestValueError
22
22
 
23
23
  # Import configuration and suite classes for organizing tests
24
24
  from orionis.test.test_suite import Configuration, TestSuite
25
- from orionis.test.suite.test_unit import UnitTest
25
+ from orionis.test.core.unit_test import UnitTest
26
26
 
27
27
  # Import standard unittest components for compatibility
28
28
  from unittest import (
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: orionis
3
- Version: 0.362.0
3
+ Version: 0.364.0
4
4
  Summary: Orionis Framework – Elegant, Fast, and Powerful.
5
5
  Home-page: https://github.com/orionis-framework/framework
6
6
  Author: Raul Mauricio Uñate Castro