How you will test only 3rd level of Mario game

There is a task that you want to test the mario game and there are 3 levels in this game but you only want to test the 3 rd level of this game without going through 1st level to 3rd level.what will be the approach to solve this?

Questions by kush22

Showing Answers 1 - 21 of 21 Answers

Ben

  • Aug 30th, 2011
 

The question is little ambiguous to answer but i try as below:

If we have each of the Levels split into individual modules for testing where we can functionally test just the 3 rd level by running the particular module only and use "Stub" if required to mock the levels 1 and 2 as if they are connected.
Note: In this case we cannot check the integration flow from prior flows 1 and 2 so you might not see the credits/scores achieved from previous levels as we mocked them.

Gauri P.

  • Apr 26th, 2013
 

If all the levels are handled separately, then we can change the status from the backend i.e the database and then test the 3rd level of the game.

  Was this answer useful?  Yes

Vishwa

  • Apr 27th, 2013
 

I test based on the trial version or else am tell based on the 3rd level game pictures.

  Was this answer useful?  Yes

Lal Krishna Surendran

  • Jul 10th, 2013
 

We can test this scenario with the help of a stub/driver based on the requirements of 3rd level.

  Was this answer useful?  Yes

Suhaz

  • Feb 6th, 2014
 

We can test this scenario by setting the driver module for level 1 and 2

  Was this answer useful?  Yes

We can save it till round 2 and load the game from always the 3rd level.(this can be done via DB changes) after which system should always start the game from 3rd.

  Was this answer useful?  Yes

sachin84

  • Jul 11th, 2017
 

While testing this scenario you need to take help of the developer, as you have to tell them to enter a cheat code in to the code to skip the 1st and 2nd level so after receive the new build (with cheat code) you can start testing with game directly with 3rd level so you dont need to start to test from first level.
There are some game where the levels are upto 100 and some levels are too complex to cross next level specially logical games so to achieve the next level also you can use cheat code. but to check the whole game in one go you must have to play from start to end so you can also come to know that whether the game is playable or not.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions