# Stubs for jsonrpc.tests.test_dispatcher (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

import unittest2 as unittest
from ..dispatcher import Dispatcher
from typing import Any

class Math:
    def sum(self, a: Any, b: Any): ...
    def diff(self, a: Any, b: Any): ...

class TestDispatcher(unittest.TestCase):
    def test_getter(self): ...
    def test_in(self): ...
    def test_add_method(self): ...
    def test_add_method_with_name(self): ...
    def test_add_class(self) -> None: ...
    def test_add_object(self) -> None: ...
    def test_add_dict(self): ...
    def test_add_method_keep_function_definitions(self): ...
    def test_del_method(self): ...
    def test_to_dict(self): ...
    def test_init_from_object_instance(self) -> None: ...
    def test_init_from_dictionary(self): ...
    def test_dispatcher_representation(self) -> None: ...
