Java JUnit: The method X is ambiguous for type Y

后端 未结 3 1678
小蘑菇
小蘑菇 2020-12-13 03:24

I had some tests working fine. Then, I moved it to a different package, and am now getting errors. Here is the code:

import static org.junit.Assert.*;
import         


        
相关标签:
3条回答
  • 2020-12-13 03:38

    The simplest solution to this problem is just cast the second parameter into a primitive:

    assertEquals(70, (double)eccen.get("alpha"));
    

    Ambiguity removed.

    This is valid for any of the Number subclasses, for example:

    assertEquals(70, (int)new Integer(70));
    

    Would solve an ambiguity too.

    However, assertEquals(double, double) is deprecated as of now and for good reasons, so I encourage you to use the method with a delta as others have suggested already.

    By good reasons I mean that, given the inner representation of double numbers, two apparently equal double numbers can differ in an irrelevant infinitesimal fraction and wouldn't pass a test, but that doesn't mean that there's anything wrong with your code.

    0 讨论(0)
  • 2020-12-13 03:42

    You can use the method

    assertEquals(double expected, double actual, double delta)
    

    Which will take into account rounding error that are hinerent to floating point (see this post for example). You can write

    assertEquals(70, eccen.get("alpha"), 0.0001);
    

    This mean that as long as the two values differ for less than 0.0001 they are considered to be equals. This has two advantages:

    • Compares floating point values as they are supposed to
    • No need to cast, as the three argument assert only applyes to doubles, not to generic Objects
    0 讨论(0)
  • 2020-12-13 03:56

    The method assertEquals(Object, Object) is ambiguous for the type ...

    What this error means is that you're passing a double and and Double into a method that has two different signatures: assertEquals(Object, Object) and assertEquals(double, double) both of which could be called, thanks to autoboxing.

    To avoid the ambiguity, make sure that you either call assertEquals(Object, Object) (by passing two Doubles) or assertEquals(double, double) (by passing two doubles).

    So, in your case, you should use:

    assertEquals(Double.valueOf(70), eccen.get("alpha"));
    

    Or:

    assertEquals(70.0d, eccen.get("alpha").doubleValue());
    
    0 讨论(0)
提交回复
热议问题