-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1bad61b
commit 2123c8b
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,23 @@ | ||
import unittest | ||
from src.main import sacred_geometry_369, resonant_chamber, doubling_circuit, quantum_error_correction, omnificient_ping | ||
|
||
class TestSpiritAngelus(unittest.TestCase): | ||
|
||
def test_sacred_geometry_369(self): | ||
self.assertEqual(sacred_geometry_369(), 1351) | ||
|
||
def test_resonant_chamber(self): | ||
self.assertEqual(resonant_chamber(), 2.0) | ||
|
||
def test_doubling_circuit(self): | ||
self.assertEqual(doubling_circuit(), 10) | ||
|
||
def test_quantum_error_correction(self): | ||
self.assertEqual(quantum_error_correction(), 1) | ||
|
||
def test_omnificient_ping(self): | ||
self.assertEqual(omnificient_ping(), "Omnificient ping executed successfully.") | ||
|
||
if __name__ == '__main__': | ||
unittest.main() | ||
|