def SeleniumDrivenUserShouldCallAppropriateActionMethodInExpectationWhenCalledWithAnExpectation(self):
         mockedShouldBeOnPage = Mock()
         mockedGoesTo = Mock()
         SeleniumDrivenUserActions.goesTo = mockedGoesTo
         SeleniumDrivenUserExpectations.shouldBeOnPage = mockedShouldBeOnPage
         
         bob = SeleniumDrivenUser(self.mockedContext)
         bob.goesTo("http://www.google.ca")
         bob.shouldBeOnPage("http://www.google.ca")
         self.assertTrue( mockedGoesTo.called)