colda.tests.test_workflow package

Submodules

colda.tests.test_workflow.Test_helper_function module

tests.test_curves.py

Test suite for the curves.py module that handles everything to do with supply and demand curves.

class colda.tests.test_workflow.Test_helper_function.Test_helper_function

Bases: object

find_test_assistor(train_id)

colda.tests.test_workflow.Train_helper_function module

tests.test_curves.py

Test suite for the curves.py module that handles everything to do with supply and demand curves.

class colda.tests.test_workflow.Train_helper_function.Train_helper_function

Bases: object

clean_db()
find_assistor()
first_user_login()
get_notification()
get_user_id()
second_user_login()
set_default_information()
train_assistor_match_identifier(notification_category)
train_assistor_request(notification_category)
train_assistor_situation(notification_category)
train_output(notification_category: dict, unittest_strategy: object | None = None, user_id: str | None = None, train_id: str | None = None) None
train_sponsor_match_identifier(notification_category)
train_sponsor_situation(notification_category)
user_logout()

colda.tests.test_workflow.conftest module

colda.tests.test_workflow.test module

colda.tests.test_workflow.test_find_assistor module

tests.test_curves.py

Test suite for the curves.py module that handles everything to do with supply and demand curves.

class colda.tests.test_workflow.test_find_assistor.Test_find_assistor

Bases: Train_helper_function

test_find_assistor()

colda.tests.test_workflow.test_find_test_assistor module

tests.test_curves.py

Test suite for the curves.py module that handles everything to do with supply and demand curves.

class colda.tests.test_workflow.test_find_test_assistor.Test_find_test_assistor

Bases: Train_helper_function, Test_helper_function

test_find_test_assistor()

colda.tests.test_workflow.test_unread_match_identifier module

tests.test_curves.py

Test suite for the curves.py module that handles everything to do with supply and demand curves.

class colda.tests.test_workflow.test_unread_match_identifier.Test_unread_match_identifier

Bases: Train_helper_function

test_unread_match_identifier()

colda.tests.test_workflow.test_unread_output module

tests.test_curves.py

Test suite for the curves.py module that handles everything to do with supply and demand curves.

class colda.tests.test_workflow.test_unread_output.Test_unread_output

Bases: Train_helper_function

test_unread_output(unittest_strategy)

colda.tests.test_workflow.test_unread_request module

tests.test_curves.py

Test suite for the curves.py module that handles everything to do with supply and demand curves.

class colda.tests.test_workflow.test_unread_request.Test_unread_request

Bases: Train_helper_function

test_unread_request()

colda.tests.test_workflow.test_unread_situation module

tests.test_curves.py

Test suite for the curves.py module that handles everything to do with supply and demand curves.

class colda.tests.test_workflow.test_unread_situation.Test_unread_situation

Bases: Train_helper_function

test_unread_situation()

colda.tests.test_workflow.test_unread_test_match_identifier module

tests.test_curves.py

Test suite for the curves.py module that handles everything to do with supply and demand curves.

class colda.tests.test_workflow.test_unread_test_match_identifier.Test_unread_test_match_identifier

Bases: Train_helper_function, Test_helper_function

test_unread_test_match_identifier(unittest_strategy)

colda.tests.test_workflow.test_unread_test_output module

tests.test_curves.py

Test suite for the curves.py module that handles everything to do with supply and demand curves.

class colda.tests.test_workflow.test_unread_test_output.Test_unread_test_output

Bases: Train_helper_function, Test_helper_function

test_unread_test_output(unittest_strategy)

colda.tests.test_workflow.test_unread_test_request module

tests.test_curves.py

Test suite for the curves.py module that handles everything to do with supply and demand curves.

class colda.tests.test_workflow.test_unread_test_request.Test_unread_test_request

Bases: Train_helper_function, Test_helper_function

test_unread_test_request()

Module contents

Test suite for the colda package.

class colda.tests.test_workflow.Regression_1s_1a

Bases: Strategy

classmethod alpha()
classmethod assistor_trained_cooperative_model_output()
classmethod sponsor_trained_cooperative_model_output()
classmethod unread_test_assistor_match_id_test()
classmethod unread_test_make_result()
classmethod unread_test_output_test()
classmethod unread_test_sponsor_match_id_test()
class colda.tests.test_workflow.Strategy

Bases: ABC

The Strategy interface declares operations common to all supported versions of some algorithm.

The Context uses this interface to call the algorithm defined by Concrete Strategies.

abstract classmethod alpha()
abstract classmethod assistor_trained_cooperative_model_output()
abstract classmethod sponsor_trained_cooperative_model_output()
abstract classmethod unread_test_assistor_match_id_test()
abstract classmethod unread_test_make_result()
abstract classmethod unread_test_output_test()
abstract classmethod unread_test_sponsor_match_id_test()
class colda.tests.test_workflow.unittest_strategy_interface

Bases: object

The Context defines the interface of interest to clients.

alpha()
assistor_trained_cooperative_model_output()
get_unread_test_assistor_match_id_test()
get_unread_test_make_result()
get_unread_test_output_test()
get_unread_test_sponsor_match_id_test()
sponsor_trained_cooperative_model_output()
property unittest_strategy: Strategy

The Context maintains a reference to one of the Strategy objects. The Context does not know the concrete class of a strategy. It should work with all strategies via the Strategy interface.