Package com.opengamma.web.json

Source Code of com.opengamma.web.json.ViewDefintionJSONBuilderTest

/**
* Copyright (C) 2009 - present by OpenGamma Inc. and the OpenGamma group of companies
*
* Please see distribution for license.
*/
package com.opengamma.web.json;

import static org.testng.AssertJUnit.assertEquals;
import static org.testng.AssertJUnit.assertNotNull;

import org.testng.annotations.Test;

import com.opengamma.engine.test.TestViewDefinitionProvider;
import com.opengamma.engine.view.ViewDefinition;
import com.opengamma.util.test.TestGroup;

/**
* Test.
*/
@Test(groups = TestGroup.UNIT)
public class ViewDefintionJSONBuilderTest {
 
  private final ViewDefinitionJSONBuilder _jsonBuilder = ViewDefinitionJSONBuilder.INSTANCE;
 
  @Test
  public void test_encode_decode_cycle() {
    ViewDefinition testViewDefinition = TestViewDefinitionProvider.getTestViewDefinition();
   
    String json = _jsonBuilder.toJSON(testViewDefinition);
    assertNotNull(json);   
    ViewDefinition fromJSON = _jsonBuilder.fromJSON(json);
    assertNotNull(fromJSON);
   
    assertEquals(testViewDefinition, fromJSON);   
  }

}
TOP

Related Classes of com.opengamma.web.json.ViewDefintionJSONBuilderTest

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.