Salutations Patrice,
Anything falling into the 'google.appengine.api.files' will be depreciated. That includes 'google.appengine.api.files.blobstore'. The other two blobstore packages are safe and have already been tested.
As for testing you have three options:
1)
Using unit tests and not enable the init_files_stub (best option though longest to setup)
2) Add critical warnings / throw errors to all the files api found in the google.appengine.api.files package
3) Deletes the files package (not really recommended but an option)
Please note anytime a Files API call is made there will be a warning:
If you simply check your logs for those entries it will give you an idea if you are still using the deprecated library or not.