-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_445_add_two_numbers_ii.rb
56 lines (52 loc) · 1.1 KB
/
test_445_add_two_numbers_ii.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# frozen_string_literal: true
require_relative '../test_helper'
require_relative '../../lib/common/linked_list'
require_relative '../../lib/medium/445_add_two_numbers_ii'
require 'minitest/autorun'
class AddTwoNumbersIITest < ::Minitest::Test
def test_default_one
assert(
::ListNode.are_equals(
::ListNode.from_array(
[7, 8, 0, 7]
),
add_two_numbers445(
::ListNode.from_array(
[7, 2, 4, 3]
),
::ListNode.from_array(
[5, 6, 4]
)
)
)
)
end
def test_default_two
assert(
::ListNode.are_equals(
::ListNode.from_array(
[8, 0, 7]
),
add_two_numbers445(
::ListNode.from_array(
[2, 4, 3]
),
::ListNode.from_array(
[5, 6, 4]
)
)
)
)
end
def test_default_three
assert(
::ListNode.are_equals(
::ListNode.from_array([0]),
add_two_numbers445(
::ListNode.from_array([0]),
::ListNode.from_array([0])
)
)
)
end
end