Answer Posted / sekhar
Test Cases can write based on the Billing System. There are
couple of billing systems like Kenan,BSCS,Amdocs ( Enabler
or Ensembler),Telecordia,Single view etc.
Basic Test Cases :
1. Different type of CDR passing
2. You have to write Rating test cases based on your
Products and Packages
3.Billing - Based on your billing system FRS.
4. Collection - Each telecom have different types of
collection process
5. Account Receivables - Different types of financial
transactions.
Let me know if you need some help....
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
Explain the glass box testing?
What is component testing?
Explain the ad hoc testing?
Write a test case on a durability of an electric bulb and test it that it will last for next 10 months.
Explain the acceptance testing?
How to test Webservices and how can we write test cases for that
how many test cases do u need to ship a product?
I want 100 test scenario for gmail
Can any one tell me how to write test data. i mean, to test each input, 2 test input(1 for +ve, & other for -ve) are given. so , for example, if i want to write test data for login form, how many test data should i write in test case?
This was asked to me recently in Microsoft interview How would you do DOS copy command testing
How to write test case for this scenario. The system shall compare the requested name with the Service Member Name field in the database
can anyone please help me in writing Test cases for HRMS,ERP and for CRM Apllications...I am joined as a trainee.so i have to write test cases for these applications..Soo can anyone pls help me....mail id: bapuji.karyampudi@gmail.com....Please reply me guys.
What are the test cases for mouse?
Explain the state testing?
Roads concatenation Problem
Consider we have some GIS (Geo Information System) operating
over some road network. Each road represented as array of
two-dimensional geographical points. Road network is a set
of roads.
System has function called Concatenate(). This function
takes raw road network and should return optimized road
network. Optimization lies in concatenating roads with
matching start or end points, i.e. if road AB end point
matches road BC start point, then optimized network should
contain concatenated road AC. Optimized network shouldn’t
contain two roads which can be concatenated.
Your task is to suggest set of test cases for Concatenate()
function in order to make sure it works correctly.
public interface IPoint
{
double Lat { get; }
double Lon { get; }
}
public Road : List