我無法圍繞這個測試問題纏住我的頭。 我寫了測試庫測試其在內存中執行,如: class RepositoryTest extends TestCase {
function setUp() {
// set implementation in the container
container()->set(Repository::class, InMemoryRep
我需要測試傳入的參數類型是一個整數。這裏是我的測試規範: require 'ball_spin'
RSpec.describe BallSpin do
describe '#create_ball_spin' do
subject(:ball_spin) { BallSpin.new }
it 'should accept an integer argument'