1
1
// Copyright © 2020 ONIXLabs
2
- //
2
+ //
3
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
4
// you may not use this file except in compliance with the License.
5
5
// You may obtain a copy of the License at
6
- //
6
+ //
7
7
// http://www.apache.org/licenses/LICENSE-2.0
8
- //
8
+ //
9
9
// Unless required by applicable law or agreed to in writing, software
10
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -23,8 +23,8 @@ public sealed class Base32Base32HexAlphabetTests
23
23
public void Base32ValuesShouldBeIdentical ( )
24
24
{
25
25
// Given
26
- Base32 a = Base32 . Create ( "abcdefghijklmnopqrstuvwxyz" , Base32Alphabet . Base32Hex ) ;
27
- Base32 b = Base32 . Create ( "abcdefghijklmnopqrstuvwxyz" , Base32Alphabet . Base32Hex ) ;
26
+ Base32 a = Base32 . Create ( "abcdefghijklmnopqrstuvwxyz" ) ;
27
+ Base32 b = Base32 . Create ( "abcdefghijklmnopqrstuvwxyz" ) ;
28
28
29
29
// When
30
30
int hashCodeA = a . GetHashCode ( ) ;
@@ -41,10 +41,10 @@ public void Base32ValuesShouldBeIdentical()
41
41
public void CreateShouldProduceExpectedResultWithPadding ( string expected , string value )
42
42
{
43
43
// Given
44
- Base32 candidate = Base32 . Create ( value , Base32Alphabet . Base32Hex , true ) ;
44
+ Base32 candidate = Base32 . Create ( value ) ;
45
45
46
46
// When
47
- string actual = candidate . ToString ( ) ;
47
+ string actual = candidate . ToString ( "P" , Base32FormatInfo . Base32Hex ) ;
48
48
49
49
// Then
50
50
Assert . Equal ( expected , actual ) ;
@@ -57,10 +57,10 @@ public void CreateShouldProduceExpectedResultWithPadding(string expected, string
57
57
public void CreateShouldProduceExpectedResultWithoutPadding ( string expected , string value )
58
58
{
59
59
// Given
60
- Base32 candidate = Base32 . Create ( value , Base32Alphabet . Base32Hex , false ) ;
60
+ Base32 candidate = Base32 . Create ( value ) ;
61
61
62
62
// When
63
- string actual = candidate . ToString ( ) ;
63
+ string actual = candidate . ToString ( null , Base32FormatInfo . Base32Hex ) ;
64
64
65
65
// Then
66
66
Assert . Equal ( expected , actual ) ;
@@ -73,7 +73,7 @@ public void CreateShouldProduceExpectedResultWithoutPadding(string expected, str
73
73
public void ParseShouldProduceExpectedResult ( string expected , string value )
74
74
{
75
75
// Given
76
- Base32 candidate = Base32 . Parse ( value , Base32Alphabet . Base32Hex ) ;
76
+ Base32 candidate = Base32 . Parse ( value , Base32FormatInfo . Base32Hex ) ;
77
77
78
78
// When
79
79
string actual = candidate . ToPlainTextString ( ) ;
0 commit comments