Works to this way:
InterstitialAd mInterstitial = new InterstitialAd(this);
mInterstitial.setAdUnitId("your id");
AdRequest adRequest = new AdRequest.Builder()
.addTestDevice("some words")
.build();
mInterstitial.loadAd(adRequest);
After run the app... Go in Logcat put in Verbose put in the search field AdRequest, so the id device shows donw.
.addTestDevice("put the id here");
I hope have helped;