| 102 | * Writing tests: |
| 103 | * Write tests that test something you wrote, not the JDK |
| 104 | * The tests are code, so all the above rules apply to them. |
| 105 | * You can use the template for tests in Eclipse, write the word test -> ctrl+space -> choose the "test - test method" template from the auto-complete menu. |
| 106 | * Our tests extend either UnitTestBase, either IntegrationTestBase. |
| 107 | * Put @After, @Before and @Test annotations. |
| 108 | * The first thing in a setUp method is calling the super.setUp() method, the last thing in a tearDown method is calling the super.tearDown() method. |
| 109 | * Example for good test: |
| 110 | {{{ |
| 111 | package org.sophie2.base.commons.util.position; |
| 112 | |
| 113 | |
| 114 | |
| 115 | import junit.framework.AssertionFailedError; |
| 116 | |
| 117 | |
| 118 | |
| 119 | import org.junit.After; |
| 120 | |
| 121 | import org.junit.Before; |
| 122 | |
| 123 | import org.junit.Test; |
| 124 | |
| 125 | import org.sophie2.core.testing.UnitTestBase; |
| 126 | |
| 127 | |
| 128 | |
| 129 | /** |
| 130 | |
| 131 | * Unit test for {@link ImmVector}. |
| 132 | |
| 133 | * |
| 134 | |
| 135 | * @author Pap |
| 136 | |
| 137 | */ |
| 138 | |
| 139 | public class ImmVectorTest extends UnitTestBase { |
| 140 | |
| 141 | |
| 142 | |
| 143 | @Override |
| 144 | |
| 145 | @Before |
| 146 | |
| 147 | protected void setUp() throws Exception { |
| 148 | |
| 149 | super.setUp(); |
| 150 | |
| 151 | } |
| 152 | |
| 153 | |
| 154 | |
| 155 | @Override |
| 156 | |
| 157 | @After |
| 158 | |
| 159 | protected void tearDown() throws Exception { |
| 160 | |
| 161 | super.tearDown(); |
| 162 | |
| 163 | } |
| 164 | |
| 165 | |
| 166 | |
| 167 | /** |
| 168 | |
| 169 | * Tests getters of {@link ImmVector}. |
| 170 | |
| 171 | */ |
| 172 | |
| 173 | @Test |
| 174 | |
| 175 | public void testGetters() { |
| 176 | |
| 177 | float x = 5.0f; |
| 178 | |
| 179 | float y = 10.0f; |
| 180 | |
| 181 | float t = 2.0f; |
| 182 | |
| 183 | |
| 184 | |
| 185 | ImmVector v = new ImmVector(x, y, t); |
| 186 | |
| 187 | |
| 188 | |
| 189 | assertEquals(x, v.getX()); |
| 190 | |
| 191 | assertEquals(y, v.getY()); |
| 192 | |
| 193 | assertEquals(t, v.getT()); |
| 194 | |
| 195 | assertEquals(x / t, v.getPointX()); |
| 196 | |
| 197 | assertEquals(y / t, v.getPointY()); |
| 198 | |
| 199 | } |
| 200 | |
| 201 | |
| 202 | |
| 203 | /** |
| 204 | |
| 205 | * Tests {@link ImmVector#add(ImmVector)}. |
| 206 | |
| 207 | */ |
| 208 | |
| 209 | @Test |
| 210 | |
| 211 | public void testAdd() { |
| 212 | |
| 213 | ImmVector vec1 = new ImmVector(10.0f, 10.0f); |
| 214 | |
| 215 | ImmVector vec2 = new ImmVector(5.0f, 20.0f); |
| 216 | |
| 217 | |
| 218 | |
| 219 | ImmVector expected = new ImmVector(15.0f, 30.0f); |
| 220 | |
| 221 | assertEquals(expected, vec1.add(vec2)); |
| 222 | |
| 223 | |
| 224 | |
| 225 | } |
| 226 | |
| 227 | |
| 228 | |
| 229 | /** |
| 230 | |
| 231 | * Tests {@link ImmVector#dotProduct(ImmVector)}. |
| 232 | |
| 233 | */ |
| 234 | |
| 235 | @Test |
| 236 | |
| 237 | public void testDotProduct() { |
| 238 | |
| 239 | ImmVector vec1 = new ImmVector(1.0f, 1.0f, 0); |
| 240 | |
| 241 | ImmVector vec2 = new ImmVector(-1.0f, 1.0f, 0); |
| 242 | |
| 243 | |
| 244 | |
| 245 | float res = vec1.dotProduct(vec2); |
| 246 | |
| 247 | float expected = 0f; |
| 248 | |
| 249 | |
| 250 | |
| 251 | assertEquals(expected, res); |
| 252 | |
| 253 | } |
| 254 | |
| 255 | |
| 256 | |
| 257 | /** |
| 258 | |
| 259 | * Tests whether {@link ImmRect} is immutable. |
| 260 | |
| 261 | */ |
| 262 | |
| 263 | @Test |
| 264 | |
| 265 | public void testImmutable() { |
| 266 | |
| 267 | ImmVector v1 = new ImmVector(10.0f, 5.0f, 2.0f); |
| 268 | |
| 269 | ImmVector v2 = v1; |
| 270 | |
| 271 | |
| 272 | |
| 273 | assertSame(v1, v2); |
| 274 | |
| 275 | |
| 276 | |
| 277 | ImmVector result = v1.add(new ImmVector(0, 0, 1)); |
| 278 | |
| 279 | assertNotSame(v1, result); |
| 280 | |
| 281 | assertTrue(v1.equalsHomogeneously(result)); |
| 282 | |
| 283 | assertSame(v1, v1); |
| 284 | |
| 285 | } |
| 286 | |
| 287 | |
| 288 | |
| 289 | /** |
| 290 | |
| 291 | * Tests {@link ImmVector#equalsHomogeneously}. |
| 292 | |
| 293 | */ |
| 294 | |
| 295 | @Test |
| 296 | |
| 297 | public void testEqualsHomogeneouslyVectors() { |
| 298 | |
| 299 | ImmVector v1 = new ImmVector(10, 10, 0); |
| 300 | |
| 301 | ImmVector v2 = new ImmVector(20, 20, 0); |
| 302 | |
| 303 | |
| 304 | |
| 305 | assertTrue(v1.equalsHomogeneously(v2)); |
| 306 | |
| 307 | |
| 308 | |
| 309 | ImmVector v3 = new ImmVector(10, 15, 0); |
| 310 | |
| 311 | assertFalse(v1.equalsHomogeneously(v3)); |
| 312 | |
| 313 | |
| 314 | |
| 315 | ImmVector v4 = new ImmVector(10, 10, 1); |
| 316 | |
| 317 | ImmVector v5 = new ImmVector(20, 20, 2); |
| 318 | |
| 319 | |
| 320 | |
| 321 | assertTrue(v4.equalsHomogeneously(v5)); |
| 322 | |
| 323 | |
| 324 | |
| 325 | ImmVector v6 = new ImmVector(10, 10, 2); |
| 326 | |
| 327 | assertFalse(v6.equalsHomogeneously(v4)); |
| 328 | |
| 329 | } |
| 330 | |
| 331 | |
| 332 | |
| 333 | /** |
| 334 | |
| 335 | * Tests {@link ImmVector#opposite()}. |
| 336 | |
| 337 | */ |
| 338 | |
| 339 | @Test |
| 340 | |
| 341 | public void testOpposite() { |
| 342 | |
| 343 | ImmVector vec = new ImmVector(10.0f, 10.0f); |
| 344 | |
| 345 | ImmVector res = vec.opposite(); |
| 346 | |
| 347 | ImmVector expected = new ImmVector(-10.0f, -10.0f); |
| 348 | |
| 349 | |
| 350 | |
| 351 | assertEquals(expected, res); |
| 352 | |
| 353 | } |
| 354 | |
| 355 | |
| 356 | |
| 357 | /** |
| 358 | |
| 359 | * Tests that multiplication between a {@link ImmVector} and a |
| 360 | |
| 361 | * {@link ImmPoint} is undefined. |
| 362 | |
| 363 | */ |
| 364 | |
| 365 | @Test |
| 366 | |
| 367 | public void testDotProductVectorPoint() { |
| 368 | |
| 369 | ImmVector point = new ImmVector(1.0f, 1.0f, 1.0f); |
| 370 | |
| 371 | ImmVector vector = new ImmVector(1, 1, 0); |
| 372 | |
| 373 | |
| 374 | |
| 375 | try { |
| 376 | |
| 377 | point.dotProduct(vector); |
| 378 | |
| 379 | fail(); |
| 380 | |
| 381 | } catch (Throwable t) { |
| 382 | |
| 383 | if (t instanceof AssertionFailedError) { |
| 384 | |
| 385 | fail(); |
| 386 | |
| 387 | } |
| 388 | |
| 389 | } |
| 390 | |
| 391 | } |
| 392 | |
| 393 | |
| 394 | |
| 395 | /** |
| 396 | |
| 397 | * Tests that a vector must not have all zero coordinates. |
| 398 | |
| 399 | */ |
| 400 | |
| 401 | @Test |
| 402 | |
| 403 | public void testEqualsPointVector() { |
| 404 | |
| 405 | |
| 406 | |
| 407 | ImmVector point = new ImmVector(1, 1, 1); |
| 408 | |
| 409 | ImmVector vector = new ImmVector(1, 1, 0); |
| 410 | |
| 411 | |
| 412 | |
| 413 | assertFalse(point.equals(vector)); |
| 414 | |
| 415 | } |
| 416 | |
| 417 | |
| 418 | |
| 419 | /** |
| 420 | |
| 421 | * Tests that a {@link ImmVector} cannot have all coordinates equal to zero. |
| 422 | |
| 423 | */ |
| 424 | |
| 425 | @Test |
| 426 | |
| 427 | public void testAllZeroes() { |
| 428 | |
| 429 | try { |
| 430 | |
| 431 | new ImmVector(0, 0, 0); |
| 432 | |
| 433 | fail(); |
| 434 | |
| 435 | } catch (Throwable t) { |
| 436 | |
| 437 | if (t instanceof AssertionFailedError) { |
| 438 | |
| 439 | fail(); |
| 440 | |
| 441 | } |
| 442 | |
| 443 | } |
| 444 | |
| 445 | } |
| 446 | |
| 447 | } |
| 448 | |
| 449 | |
| 450 | }}} |