Package org.wicketstuff.pageserializer.common.analyze.report

Source Code of org.wicketstuff.pageserializer.common.analyze.report.TreeTypeMapTest$Root

/**
* Copyright (C)
*   2008 Jeremy Thomerson <jeremy@thomersonfamily.com>
*   2012 Michael Mosmann <michael@mosmann.de>
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.wicketstuff.pageserializer.common.analyze.report;

import java.io.IOException;
import java.util.ArrayList;

import org.junit.Assert;
import org.junit.Test;
import org.wicketstuff.pageserializer.common.analyze.ISerializedObjectTree;

public class TreeTypeMapTest {

  @Test
  public void joinLabels() throws IOException {
    ISerializedObjectTree source = Trees.fromResource(getClass(), "labels");
    Assert.assertEquals("a|b|c", TreeTypeMap.allLables(source.children()));
  }
  @Test
  public void noLabels() throws IOException {
    Assert.assertEquals(null, TreeTypeMap.allLables(new ArrayList<ISerializedObjectTree>()));
  }
 
  @Test
  public void compressNothing() throws IOException {
    ISerializedObjectTree source = Trees.fromResource(getClass(), "compress");
    ISerializedObjectTree match= Trees.fromResource(getClass(), "compressed");
//    ISerializedObjectTree compressed = TreeTypeMap.compress(source.children());
    ISerializedObjectTree compressed = SimilarNodeTreeTransformator.transformTree(source);
    Trees.assertEqualsTree(match, compressed);
  }

  static class Root {

  }

  static class A {

  }

  static class B {

  }

  static class C {

  }

  static class D {

  }

}
TOP

Related Classes of org.wicketstuff.pageserializer.common.analyze.report.TreeTypeMapTest$Root

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.