| 1 | class Outer(): |
| 2 | class Inner(): |
| 3 | def inner_func(): |
| 4 | Outer().outer_func() |
| 5 | |
| 6 | def outer_func(a): |
| 7 | print("Outer_func") |
| 8 | a.inner_func() |
| 9 | |
| 10 | def __init__(self): |
| 11 | self.inner = self.Inner() |
| 12 | print("do something") |
| 13 | |
| 14 | |
| 15 | new_obj = Outer() |
no outgoing calls
no test coverage detected