removed placeholder test class

Signed-off-by: ardevd <edvard.holst@gmail.com>
This commit is contained in:
ardevd 2019-04-11 13:15:36 +02:00
parent aa98015739
commit 477bc797aa
No known key found for this signature in database
GPG key ID: C30729EE3C9A3CCE

View file

@ -1,24 +0,0 @@
package com.owncloud.android.utils;
import org.junit.Test;
import java.io.File;
import java.net.URL;
import static org.junit.Assert.*;
public class BitmapUtilsTest {
@Test
public void calculateHSL_assertCorrectRGBArrayReturned() throws Exception {
int[] rgbArray = BitmapUtils.calculateHSL("Edvard");
}
@Test
public void HSLtoRGB_assertCorrectRGBArrayReturned() throws Exception {
int[] rgbArray = BitmapUtils.HSLtoRGB(300.0f, 90.0f, 99.0f, 1.0f);
String format = "hello";
}
}