资 源 简 介
The project is a Java API for performing tests on Applications integrating with Facebook.
Part of this API manages Facebook test users for the application.
Excerpt from the Facebook developer documentation about test users:
"A test user is a user account associated with an app created for the purpose of testing the functionality of that application. You can use test users for manual or automated testing."
Usage example
```
FacebookTestUserStore facebookStore = new HttpClientFacebookTestUserStore("", ""));
FacebookTestUserAccount account = facebookStore.createTestUser(true, "email,read_stream");
systemUnderTest.doStuffThatIntegratesWithFacebook( account.accessToken() );
assertTrue("Wall did not contain expected data", account.getProfileFeed().contains("stuff posted on Wall"));
```
Where