Click here to Skip to main content
15,887,214 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to launch another application Pin
Gareth H5-Jun-08 4:28
Gareth H5-Jun-08 4:28 
AnswerRe: How to launch another application Pin
DaveyM695-Jun-08 8:13
professionalDaveyM695-Jun-08 8:13 
QuestionPrint Pin
Kr_Chandan5-Jun-08 4:10
Kr_Chandan5-Jun-08 4:10 
AnswerRe: Print Pin
leppie5-Jun-08 4:50
leppie5-Jun-08 4:50 
AnswerRe: Print Pin
Brady Kelly5-Jun-08 5:38
Brady Kelly5-Jun-08 5:38 
GeneralRe: Print Pin
Kr_Chandan5-Jun-08 19:09
Kr_Chandan5-Jun-08 19:09 
QuestionNMock expectations producing weird results Pin
N a v a n e e t h5-Jun-08 4:09
N a v a n e e t h5-Jun-08 4:09 
AnswerRe: NMock expectations producing weird results Pin
Judah Gabriel Himango5-Jun-08 5:06
sponsorJudah Gabriel Himango5-Jun-08 5:06 
Mocks are different than stubs. I'm not familiar with NMock (I use RhinoMocks myself), but the way it works is that

Expect.Once.On(currency).Method("GetTotal")

Set up your expection that GetTotal be called exactly once. Since you did

Assert.AreEqual("10100", services.Total());
Assert.AreEqual("10100", services.Total());// This will throw exception

Calling it 2x is violating the expectation. If that's not what you desired, either change Expect.Once to Expect.Twice (again, not sure of the NMock syntax), or use a stub in place of the mock.



Life, family, faith: Give me a visit.

From my latest post: "How differently the psalmist saw it! How blessed -- how truly happy with real joy! -- is the man who delights in the Law of the Lord."

Judah Himango


GeneralRe: NMock expectations producing weird results Pin
N a v a n e e t h5-Jun-08 7:04
N a v a n e e t h5-Jun-08 7:04 
GeneralRe: NMock expectations producing weird results Pin
Judah Gabriel Himango5-Jun-08 7:13
sponsorJudah Gabriel Himango5-Jun-08 7:13 
GeneralRe: NMock expectations producing weird results Pin
N a v a n e e t h5-Jun-08 7:21
N a v a n e e t h5-Jun-08 7:21 
GeneralRe: NMock expectations producing weird results Pin
Judah Gabriel Himango6-Jun-08 6:45
sponsorJudah Gabriel Himango6-Jun-08 6:45 
GeneralRe: NMock expectations producing weird results Pin
N a v a n e e t h6-Jun-08 7:37
N a v a n e e t h6-Jun-08 7:37 
QuestionSuspending a process programmatically, How is that? Pin
LordCover5-Jun-08 3:21
LordCover5-Jun-08 3:21 
QuestionRe: Suspending a process programmatically, How is that? Pin
LordCover5-Jun-08 3:25
LordCover5-Jun-08 3:25 
AnswerRe: Suspending a process programmatically, How is that? Pin
CPallini5-Jun-08 3:29
mveCPallini5-Jun-08 3:29 
GeneralRe: Suspending a process programmatically, How is that? Pin
LordCover5-Jun-08 3:47
LordCover5-Jun-08 3:47 
AnswerRe: Suspending a process programmatically, How is that? Pin
Anthony Mushrow5-Jun-08 3:33
professionalAnthony Mushrow5-Jun-08 3:33 
GeneralRe: Suspending a process programmatically, How is that? Pin
LordCover5-Jun-08 4:50
LordCover5-Jun-08 4:50 
QuestionApplicationSettingBAse Issue Pin
AmithaRaghu5-Jun-08 2:46
AmithaRaghu5-Jun-08 2:46 
QuestionWCF plugin for VS 2005 Pin
priy@5-Jun-08 1:18
priy@5-Jun-08 1:18 
AnswerRe: WCF plugin for VS 2005 Pin
#realJSOP5-Jun-08 2:45
mve#realJSOP5-Jun-08 2:45 
AnswerRe: WCF plugin for VS 2005 Pin
teejayem5-Jun-08 3:22
teejayem5-Jun-08 3:22 
Questiona question about kernel32.dll and user32.dll Pin
Sajjad Izadi5-Jun-08 1:16
Sajjad Izadi5-Jun-08 1:16 
AnswerRe: a question about kernel32.dll and user32.dll Pin
leppie5-Jun-08 1:20
leppie5-Jun-08 1:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.