Created
September 18, 2012 13:17
-
-
Save martiner/3743045 to your computer and use it in GitHub Desktop.
how to format code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
assertEquals(new SOQLQuery("SELECT (SELECT FirstName FROM Contacts where FirstName='Eva' limit 1),Name FROM Account", | |
"Account", new SelectField("Contact@FirstName"), new SelectField("Name")), | |
processor.process("select (select FirstName from Contacts where FirstName='Eva' limit 1),Name from Account", loginResult)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
assertEquals(new SOQLQuery("SELECT (SELECT FirstName FROM Contacts where FirstName='Eva' limit 1),Name FROM Account", "Account", | |
new SelectField("Contact@FirstName"), new SelectField("Name")), processor.process( | |
"select (select FirstName from Contacts where FirstName='Eva' limit 1),Name from Account", loginResult)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment