1
1
package ch .cyberduck .binding .foundation ;
2
2
3
3
/*
4
- * Copyright (c) 2002-2015 David Kocher . All rights reserved.
5
- * http ://cyberduck.ch /
4
+ * Copyright (c) 2002-2025 iterate GmbH . All rights reserved.
5
+ * https ://cyberduck.io /
6
6
*
7
7
* This program is free software; you can redistribute it and/or modify
8
8
* it under the terms of the GNU General Public License as published by
9
- * the Free Software Foundation; either version 2 of the License, or
9
+ * the Free Software Foundation, either version 3 of the License, or
10
10
* (at your option) any later version.
11
11
*
12
12
* This program is distributed in the hope that it will be useful,
13
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
15
* GNU General Public License for more details.
16
- *
17
- * Bug fixes, suggestions and comments should be sent to [email protected]
18
16
*/
19
17
18
+ import org .junit .Assert ;
20
19
import org .junit .Ignore ;
21
20
import org .junit .Test ;
22
21
import org .rococoa .cocoa .foundation .NSPoint ;
23
22
24
- import static org .junit .Assert .assertEquals ;
25
- import static org .junit .Assert .assertNotEquals ;
26
-
27
23
public class NSPointTest {
28
24
29
25
@ Test
30
26
@ Ignore
31
27
public void testEquals () {
32
- assertEquals (new NSPoint (0 , 0 ), new NSPoint (0 , 0 ));
28
+ Assert . assertEquals (new NSPoint (0 , 0 ), new NSPoint (0 , 0 ));
33
29
}
34
30
35
31
@ Test
36
32
public void testNotEquals () {
37
- assertNotEquals (new NSPoint (1 , 1 ), new NSPoint (0 , 0 ));
33
+ Assert . assertNotEquals (new NSPoint (1 , 1 ), new NSPoint (0 , 0 ));
38
34
}
39
35
}
0 commit comments