Removed redundant file.

This commit is contained in:
Clinton Alexander 2016-11-03 10:47:34 +00:00
parent acaa9f82a5
commit cf4b91d7c7

View File

@ -1,14 +0,0 @@
package com.r3corda.core.math
import org.junit.Test
import org.junit.Assert.*
import java.math.BigDecimal
class Utils {
@Test
fun sum() {
val calculated = listOf(BigDecimal.valueOf(1.0), BigDecimal.valueOf(5.0)).sum()
assert(calculated == BigDecimal.valueOf(6.0))
}
}