(t *testing.T)
| 1805 | } |
| 1806 | |
| 1807 | func Test_Mock_AssertNotCalled(t *testing.T) { |
| 1808 | t.Parallel() |
| 1809 | |
| 1810 | var mockedService = new(TestExampleImplementation) |
| 1811 | |
| 1812 | mockedService.On("Test_Mock_AssertNotCalled", 1, 2, 3).Return(5, 6, 7) |
| 1813 | |
| 1814 | mockedService.Called(1, 2, 3) |
| 1815 | |
| 1816 | assert.True(t, mockedService.AssertNotCalled(t, "Test_Mock_NotCalled")) |
| 1817 | |
| 1818 | } |
| 1819 | |
| 1820 | func Test_Mock_IsMethodCallable(t *testing.T) { |
| 1821 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…