(name?: string | undefined)
| 141 | * @return {*} {string} |
| 142 | */ |
| 143 | export function createUniquePartitionKey(name?: string | undefined): string { |
| 144 | if (name === undefined) { |
| 145 | return getUniqueName("datatablestests"); |
| 146 | } |
| 147 | return getUniqueName(name); |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * creates an Azure Data Tables client for local or service tests |
no test coverage detected
searching dependent graphs…