~ken-vandine/+junk/libgwibber

« back to all changes in this revision

Viewing changes to test.vala

  • Committer: Ken VanDine
  • Date: 2010-05-12 07:42:45 UTC
  • Revision ID: ken.vandine@canonical.com-20100512074245-m1ued9zb7xq2qtg3
Implemented more methods and added more tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
void main() {
2
 
    var service = new GwibberService();
3
 
    service.Refresh ();
4
 
    string services = service.GetServices ();
5
 
    stdout.printf ("Services: \n %s\n", services);
6
 
    string accounts = service.GetAccounts ();
7
 
    stdout.printf ("Accounts: \n %s\n", accounts);
8
 
 
9
 
}