Package com.eclipsesource.tabris.tracking.TrackingEvent

Examples of com.eclipsesource.tabris.tracking.TrackingEvent.EventType


  @Test
  public void testHasType() {
    TrackingEvent event = new TrackingEvent( EventType.PAGE_VIEW, mock( TrackingInfo.class ), new Object(), 1 );

    EventType type = event.getType();

    assertSame( EventType.PAGE_VIEW, type );
  }
View Full Code Here

TOP

Related Classes of com.eclipsesource.tabris.tracking.TrackingEvent.EventType

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.