PSDTextTests.cs 274 B

123456789101112131415
  1. using Xunit;
  2. namespace PSDTextTests
  3. {
  4. public class PSDTextTests
  5. {
  6. private const string TestFile = "./testFiles/test.psd";
  7. [Fact]
  8. public void ReadXMLFromPSD()
  9. {
  10. var test = new PSDText.PSDText(TestFile);
  11. }
  12. }
  13. }