public void CanAddAnEqualFilePath()
        {
            string filePath = this.GivenAStandardFilePath();

            AssetAndroid assetAndroid = new AssetAndroid(filePath);

            Assert.IsTrue(assetAndroid.CanBeAdded(filePath));
        }
        public void CanAddAnotherSizeOfFilePath()
        {
            string filePath   = this.GivenAStandardFilePath();
            string x2FilePath = this.GivenALdpiFilePath();

            AssetAndroid assetAndroid = new AssetAndroid(filePath);

            Assert.IsTrue(assetAndroid.CanBeAdded(x2FilePath));
        }
        public void CanNotAddDifferentFilePath()
        {
            string filePath      = this.GivenAStandardFilePath();
            string otherFilePath = this.GivenAStandardFilePath("otherFile");

            AssetAndroid assetAndroid = new AssetAndroid(filePath);

            Assert.IsFalse(assetAndroid.CanBeAdded(otherFilePath));
        }