public void Beam_throws_when_target_is_null_or_Empty(string toTarget)
        {
            Action beam = () => _teleporter.Beam(toTarget, _testFragment1);

            beam.Should().Throw <ArgumentNullException>()
            .Which.ParamName.Should().Be("toTarget");
        }