public void MethodWithOutParameter_SetupReturnsValueForOutParameter_SetupProperly()
        {
            int itemCount;

            branchRepository.GetBranchPage(0, 10, out itemCount);
            Assert.That(itemCount == 100);
        }