refactoring DatafileService
This commit is contained in:
parent
40e6540074
commit
b72cf7c04b
2 changed files with 160 additions and 0 deletions
|
@ -0,0 +1,26 @@
|
|||
import { DatafileServiceImpl } from './datafile.service.impl';
|
||||
|
||||
|
||||
describe("DatafileServiceImpl", () => {
|
||||
var datafileServiceImpl: DatafileServiceImpl;
|
||||
|
||||
beforeEach(() => {
|
||||
datafileServiceImpl = new DatafileServiceImpl();
|
||||
});
|
||||
|
||||
describe("blobToString", () => {
|
||||
|
||||
});
|
||||
|
||||
describe("arrayToString", () => {
|
||||
|
||||
});
|
||||
|
||||
describe("readDataArrayAsPossibleArchive", () => {
|
||||
|
||||
});
|
||||
|
||||
describe("downloadDataFileAsArrayBuffer", () => {
|
||||
|
||||
});
|
||||
});
|
Reference in a new issue