Is it possible to test SMS in emulator. Iam basically from j2me background where we open 2 instance of emulator each will have its own phone number and we can send and receive SMS using the phone numbers.
Is this possible in symbian. Or how do i do testing of SMS applications.
instead of KMsvGlobalInBoxIndexEntryId you can use KMsvDraftEntryId for the emulator code. That is, feed your program with fake sms's that you create in the emulator's messaging app by creating a new sms and then cancel sending it, thus pushing it into the drafts folder.
Forum posts: 49
CMsvSession *pMsv = CMsvSession::OpenSyncL(*this);
CMsvEntry *pMsvEntry = pMsv->GetEntryL(KMsvGlobalInBoxIndexEntryId);
for(e=0;e<pMsvEntry->Count();e++){
iEikonEnv->AlertWin(
(*pMsvEntry)[e].iDetails,
(*pMsvEntry)[e].iDescription
);
}
delete pMsv;
Forum posts: 45
Thanks a lot
Is it possible to test SMS in emulator. Iam basically from j2me background where we open 2 instance of emulator each will have its own phone number and we can send and receive SMS using the phone numbers.
Is this possible in symbian. Or how do i do testing of SMS applications.
Regards,
Prabhu.
Forum posts: 9
- - - - - - -
simon b