Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将 .txt 文件作为原始文本或通过代码读取以提取测试套件中键入的数据(资源/断言器,....)。有没有办法做到这一点?通过代码或任何编辑器。
如果你有二进制格式的 tst 文件,那么可能会有问题,没有官方 API 可以读取它。这是非常古老的格式,我不认为它仍在使用。
可能还有两种最新的 tst 格式:
如果是压缩的 XML,您必须将其解压缩,然后才能访问 XML,您可以在其中将其作为文本文件读取。在 XML 的情况下,它只是 XML,您可以将其作为纯文本文件读取。没有官方 API 允许以与 SOAtest 的 GUI 类似的方式读取它以在代码中使用,即:在 Java 中。