mirror of https://github.com/quasar/Quasar.git
Reflected changes to unit test
This commit is contained in:
parent
e3591b5e02
commit
18a076dcd1
|
@ -13,7 +13,7 @@ public class SafeQuickLZTests
|
|||
*/
|
||||
[TestMethod]
|
||||
[TestCategory("Compression")]
|
||||
public void SmallDataTestLevel1()
|
||||
public void SmallDataCompressionTestLevel1()
|
||||
{
|
||||
SafeQuickLZ safeQuickLZtest = new SafeQuickLZ();
|
||||
byte[] smallData = new byte[100];
|
||||
|
@ -42,7 +42,7 @@ public void SmallDataTestLevel1()
|
|||
*/
|
||||
[TestMethod]
|
||||
[TestCategory("Compression")]
|
||||
public void SmallDataTestLevel3()
|
||||
public void SmallDataCompressionTestLevel3()
|
||||
{
|
||||
SafeQuickLZ safeQuickLZtest = new SafeQuickLZ();
|
||||
byte[] smallData = new byte[100];
|
||||
|
@ -71,7 +71,7 @@ public void SmallDataTestLevel3()
|
|||
*/
|
||||
[TestMethod]
|
||||
[TestCategory("Compression")]
|
||||
public void BigDataTestLevel1()
|
||||
public void BigDataCompressionTestLevel1()
|
||||
{
|
||||
SafeQuickLZ safeQuickLZtest = new SafeQuickLZ();
|
||||
byte[] bigData = new byte[100000];
|
||||
|
@ -100,7 +100,7 @@ public void BigDataTestLevel1()
|
|||
*/
|
||||
[TestMethod]
|
||||
[TestCategory("Compression")]
|
||||
public void BigDataTestLevel3()
|
||||
public void BigDataCompressionTestLevel3()
|
||||
{
|
||||
SafeQuickLZ safeQuickLZtest = new SafeQuickLZ();
|
||||
byte[] bigData = new byte[100000];
|
||||
|
|
Loading…
Reference in New Issue