Examples of TabNavigation


Examples of com.x.protobuf.TabNavigationPB.TabNavigation

public class SerializationTest {
 
  @Test
  public void testSerializationForIssue2() throws Exception {
    TabNavigation nvigation = new TabNavigation();
    nvigation.setState("123");
    nvigation.setPageTransition(PageTransition.TYPED);
   
    byte[] data = TabNavigationSerializer.serialize(nvigation);
   
    TabNavigation result = TabNavigationSerializer.parseFrom(data);
   
    assertEquals(nvigation.getState(), result.getState());
    assertEquals(nvigation.getPageTransition(), result.getPageTransition());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.