public void testPaint() {
  // Rozpocznij od czystej żółtej farby o objętości 100
  Paint ourPaint = new Paint(100.0, 0, 50, 0);
  // Weź czystą niebieską farbę o objętości 100
  Paint blue = new Paint(100.0, 0, 0, 50);

  // Dodaj niebieską farbę do żółtej
  ourPaint.mixIn(blue);

 // W rezultacie powinniśmy otrzymać nową zieloną farbę o objętości 200.0 
  assertEquals(200.0, ourPaint.getVolume(), 0.01);
  assertEquals(25, ourPaint.getBlue());
  assertEquals(25, ourPaint.getYellow());
  assertEquals(0, ourPaint.getRed());
}
