Added foo dev for Mastodon API.

This commit is contained in:
Christian P. MOMON 2018-05-22 08:54:44 +02:00
parent e88879226c
commit eaa670a135
5 changed files with 42 additions and 0 deletions

View File

@ -39,5 +39,6 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="lib/mastodon4j.jar"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>

BIN
lib/mastodon4j-javadoc.jar Normal file

Binary file not shown.

BIN
lib/mastodon4j-sources.jar Normal file

Binary file not shown.

BIN
lib/mastodon4j.jar Normal file

Binary file not shown.

View File

@ -0,0 +1,41 @@
/**
* Copyright (C) 2011-2013,2017 Nicolas Vinot <aeris@imirhil.fr>
* Copyright (C) 2017-2018 Christian Pierre MOMON <cmomon@april.org>
*
* This file is part of (April) Hebdobot.
*
* Hebdobot is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Hebdobot is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Hebdobot. If not, see <http://www.gnu.org/licenses/>
*/
package org.april.hebdobot;
import org.apache.commons.lang3.StringUtils;
import org.junit.Test;
/**
* The Class BotMock.
*/
public class Foo
{
/**
* Instantiates a new bot mock.
*
* @throws Exception
* the exception
*/
@Test
public static void Foo() throws Exception
{
StringUtils.isBlank("");
}
}