Package net.sf.oqt.model

Examples of net.sf.oqt.model.QueryVO


  private QueryVO vo1 = null;
  private QueryVO vo2 = null;

  @Before
  public void setUp() throws Exception {
    vo1 = new QueryVO("name1", "select fromt bla");
    vo2 = new QueryVO("name2", "select fromt bla");
  }
View Full Code Here


  }

  @Test
  public void testEqualsObject() {
    assertThat(vo1.equals(vo2)).isFalse();
    assertThat(vo1.equals(new QueryVO("name1", "test"))).isTrue();
  }
View Full Code Here

TOP

Related Classes of net.sf.oqt.model.QueryVO

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.