コード例 #1
0
        static void thatArgumentListEmptyForMethodWithNoArgument()
        {
            // Given
            fflib_ApexMocks mocks = new fflib_ApexMocks();
            fflib_MyList mockList = (fflib_MyList)mocks.mock(typeof(fflib_MyList));
            mocks.startStubbing();
            mocks.when(mockList.isEmpty()).thenAnswer(new fflib_AnswerTest.ArgumentListEmptyForMethodWithNoArgument());
            mocks.stopStubbing();

            // When
            bool actualValue = mockList.isEmpty();
        }