public void GetWithoutIndexes(string path, IReadOnlyCollection <string> indexesStack, string pathWithIndexes) { _ = indexesStack; var pathWithoutIndexes = new CapacityInfoHelpers().GetWithoutIndexes(pathWithIndexes); pathWithoutIndexes.Should().Be(path); }
public void Should_ReturnTrue_When_WeirdIndexes(string path, int amount) { _ = amount; var containsIndexes = new CapacityInfoHelpers().ContainsIndexes(path); containsIndexes.Should().Be(true); }
public void Should_ReturnFalse_When_NoIndexes(string path) { var containsIndexes = new CapacityInfoHelpers().ContainsIndexes(path); containsIndexes.Should().Be(false); }
public void Should_Initialize() { _ = new CapacityInfoHelpers(); }