Package org.rendersnake

Source Code of org.rendersnake.InterfacesTest

package org.rendersnake;

import org.rendersnake.interfaces.Canvas;

import junit.framework.TestCase;

public class InterfacesTest extends TestCase {

  public void test(){
    Canvas canvas = new Canvas();
    canvas
      .html()
        .body()
          .write("Hi")
          .div()
            .write("Hello")
          ._div()
        ._body()
      ._html();
  }
}
TOP

Related Classes of org.rendersnake.InterfacesTest

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.