public void ToString_Contains_AvailableMemoryInGB()
        {
            // Arrange
            var entry1 = new SystemStorageDeviceInformation();
            var object1 = new SystemStorageInformation { StorageDeviceInfos = new[] { entry1 } };

            // Act
            string result = object1.ToString();

            // Assert
            Assert.IsTrue(result.Contains(entry1.ToString()));
        }