Skip to content

mock

Contains mock instruments and visitors for testing purposes.

Classes:

MockInstrument

MockInstrument(
    name: str,
    book_type: Optional[BookType] = None,
    credit_rating: Optional[CreditRating] = None,
    issuer: Optional[Issuer] = None,
    parent: Optional[Instrument] = None,
)

Bases: Instrument

A mock instrument for testing purposes.

Methods:

  • accept

    Accept a visitor that processes this mock instrument.

  • is_composite

    Check if the instrument is composite.

Attributes:

book_type property writable

book_type: Optional[BookType]

Get the book type of the instrument.

credit_rating property writable

credit_rating: CreditRating

Get the instrument's credit rating.

issuer property writable

issuer: Issuer

Get the instrument's issuer.

parent property writable

parent: Optional[Instrument]

Get the parent instrument.

value property writable

value: float

Get the instrument's value.

accept

accept(visitor: Visitor) -> None

Accept a visitor that processes this mock instrument.

is_composite

is_composite() -> bool

Check if the instrument is composite.

MockValuationVisitor

MockValuationVisitor(new_value: float)

Bases: ValuationVisitor

A mock valuation visitor that sets a new value for mock instruments.

:param new_value: The new value to set for the mock instrument.

Methods:

set_date

set_date(
    date: date, *, date_must_be_in_simulation: bool = True
) -> None

Set the date for the valuation and update the term structure.

visit_amortizing_fixed_rate_loan

visit_amortizing_fixed_rate_loan(
    instrument: AmortizingFixedRateLoan,
) -> None

Value an amortizing fixed rate bond.

visit_cash

visit_cash(instrument: Cash) -> None

Value cash.

visit_common_equity

visit_common_equity(instrument: CommonEquity) -> None

Value common equity.

visit_covered_bond

visit_covered_bond(instrument: CoveredBond) -> None

Value a covered bond.

visit_credit_card

visit_credit_card(instrument: CreditCard) -> None

Value a credit card.

visit_deposit

visit_deposit(instrument: Deposit) -> None

Visit deposit.

visit_fixed_rate_bond

visit_fixed_rate_bond(instrument: FixedRateBond) -> None

Value a fixed rate bond.

visit_mock_instrument

visit_mock_instrument(instrument: MockInstrument) -> None

Visit a mock instrument.

visit_personal_loan

visit_personal_loan(instrument: PersonalLoan) -> None

Value a personal loan.