Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
Unit testing is a method by which individual units of source code, sets of one or more computer program modules together with associated control data, usage procedures, and operating procedures, are tested to determine if they are fit for use.
0
votes
1answer
33 views
How to set FBPLISTAppIDKey and FBPLISTAppSecretKey with FBTestSession
I am getting an exception using FBTestSession when using FBTestSession *fbSession = [FBTestSession sessionWithSharedUserWithPermissions:@[@"email"]];
If you look at the code below you can see ...
0
votes
1answer
42 views
Facebook :: renew token for test facebook user in automated tests
I need to renew the auth token I'm getting after test user is created.
As far as I understood from manual, this could be done by redirecting the browser to authentication page, and then the browser ...
0
votes
1answer
63 views
Login a facebook Test User from the client side
I would like to do some unit tests using the facebook Test User API.
the problem is to log a user account using the login_url provided by the API on the client side.
The url protocol of the ...
0
votes
2answers
279 views
How to do unit testing rails for omniauth facebook on rails
I want to do unit testing for this method
here is the code :
def self.find_for_facebook_oauth(access_token, sign_in_resource=nil)
data = access_token.extra.raw_info
if ...
0
votes
1answer
880 views
/accounts/test-users giving OAuthException
For some reason, I'm suddenly having trouble accessing my test users via the graph.
GETting this ...
...
1
vote
3answers
330 views
Does NUnit supports fluent syntax for C# dynamics?
I have an nUnit test case that asserts the dynamic that was returned from Facebook C# SDK. Is there any way how to assert it using NUnit fluent syntax. Here is very simplified example for what I'm ...
0
votes
1answer
238 views
Facebook like button fails in QA environment
We've set up a test page on our QA site to do testing on both the Facebook "Like" button and the "Tweet this" button. To do this, we password protected the site (except for the page in question), ...
3
votes
1answer
709 views
How to test facebook signed requests
I have a facebook app that makes use of signed requests for inviting people to different parts of our page. It seems to work more or less ok, but as a Rails developer I am feeling kind of uneasy not ...
1
vote
3answers
447 views
Testing Facebook application with PHPUnit
I am building a Facebook application with PHP and I would like to implement PHPUnit tests. The problem is, I think, with the Facebook authorization and getting the dynamic token. During testing the ...
10
votes
1answer
718 views
Unit testing facebook applications
What are good practices of unit testing facebook Canvas applications ?
Lets say you have MVC application with controllers utilizing local Facebook library which provides access to Graph API, FB ...
2
votes
1answer
268 views
Unit Testing the Server Interface for a Silverlight-Facebook Application
I have a Silverlight 4 client running on a Facebook page hosted on Google App Engine. It's using gminifb to communicate with the Facebook API. The Silverlight client uses POST calls to the URIs for ...
2
votes
1answer
444 views
Automated testing for Facebook SDK wrapper
In my Facebook application, I have one Facebook wrapper class to encapsulates some call to Facebook API. I want to to write a unit test for this wrapper class, but since it depends on a so called ...