My priority is to develop modern and responsive web-sites. I have got an experience of solving problems as an IT-technical support thus I know how irritating bad user-experience might be.
2012 - 2015 - Sales-department manager at Legion Publishing House
2015 - 2025 - Tech-support at Service Rostov company
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class BoxTest {
@Test
public void TestBox() {
Box<String, Integer, Float> box1 = new Box<>("Str", 2, 3.5f);
Box<String, Integer, Float> box2 = new Box<>("Str", 5, 6.5f);
float result = box1.getValue() + box1.getValue2() + box2.getValue() + box2.getValue2();
assertEquals(17, result, 0.001);
}
}