Package com.eclipsesource.tabris.geolocation

Examples of com.eclipsesource.tabris.geolocation.Geolocation


  @Test
  public void testHasGeolocationService() {
    TabrisClient client = new TabrisClientImpl();

    Geolocation geolocation = client.getService( Geolocation.class );

    assertNotNull( geolocation );
  }
View Full Code Here


  @Test
  public void testGeolocationIsSingleton() {
    TabrisClient client = new TabrisClientImpl();

    Geolocation geolocation = client.getService( Geolocation.class );
    Geolocation geolocation2 = client.getService( Geolocation.class );

    assertSame( geolocation, geolocation2 );
  }
View Full Code Here

TOP

Related Classes of com.eclipsesource.tabris.geolocation.Geolocation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.