public void ShouldReturnTwoDestroyersAndOneBattleship()
        {
            var subject = new FleetConfigurationProvider();

            subject.Get().Should().BeEquivalentTo(new Destroyer(), new Destroyer(), new Battleship());
        }