Rename unzip tool.
[SquirrelJME.git] / modules / tac / src / test / java / DoFunction.java
blob3240773bef5078f3fceafc4be23ff7445c5dc05b
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 import net.multiphasicapps.tac.TestFunction;
12 /**
13 * Tests a basic consumer.
15 * @since 2018/10/06
17 public class DoFunction
18 extends TestFunction<String, String>
20 /**
21 * {@inheritDoc}
22 * @since 2018/10/06
24 @Override
25 public String test(String __s)
27 StringBuilder sb = new StringBuilder(__s);
28 sb.reverse();
29 return sb.toString();