Package com.github.mustachejavabenchmarks.simple

Source Code of com.github.mustachejavabenchmarks.simple.SimpleJsonInterpreterTest

package com.github.mustachejavabenchmarks.simple;

import com.github.mustachejava.DefaultMustacheFactory;
import com.github.mustachejava.reflect.SimpleObjectHandler;
import com.github.mustachejavabenchmarks.JsonInterpreterTest;

/**
* TODO: Edit this
* <p/>
* User: sam
* Date: 7/7/12
* Time: 4:30 PM
*/
public class SimpleJsonInterpreterTest extends JsonInterpreterTest {
  @Override
  protected DefaultMustacheFactory createMustacheFactory() {
    DefaultMustacheFactory mf = super.createMustacheFactory();
    mf.setObjectHandler(new SimpleObjectHandler());
    return mf;
  }
}
TOP

Related Classes of com.github.mustachejavabenchmarks.simple.SimpleJsonInterpreterTest

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.