The ComponentManager should offer an operation to add the Components of an Aspect to an Entity at once.
ComponentTuple tuple = testee.addComponents(testRef, aspect);
tuple.on(TestComponentA.class).setArray(new double[]{0.5, 0.5});
tuple.on(TestComponentB.class).setString("");
tuple.pushTo(testRef);