作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在单元测试中编写期望?
这是一个例子:
defmodule MyAPIModule do
@url "http://example.com/path"
def get_something(http_module \\ HTTPoison) do
http_module.get!(@url, [], [])
end
end
defmodule MyAPIModuleTest do
use ExUnit.Case
test "Runs the get! method with no headers and no params" do
MyAPIModule.get_something(HttpSpy)
# 1) assert that get! was called
# 2) assert [] == headers
# 3) assert [] == params
# 4) assert "http://example.com/path" == url
end
end
defmodule HttpSpy do
def get!(url, headers, params) do
#
end
end
defmodule HttpSpy do
def start(listener) do
spawn_link(__MODULE__, loop, [listener])
end
def loop(listener) do
receive do
end
end
def get!(url, headers, params) do
end
end
test "Runs the get! method with no headers and no params"
spy = HttpSpy.start(self)
MyAPIModule.get_something(HttpSpy)
receive do
{^spy, method_call} -> flunk("wrong method call")
after 1000 -> flunk("timeout")
end
end
最佳答案
帕特里克给出了一个很好的答案,这将是我的第一个方法。但是,如果您无法直接访问 spy 返回的结果,您可以向自己发送一条消息:
# In the spy
send self(), :get_was_called
# In the test
assert_received :get_was_called
关于unit-testing - 如何在没有模拟的情况下记录/验证单元测试中的方法调用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32724586/
我是一名优秀的程序员,十分优秀!