コード例 #1
0
ファイル: PillTest.cs プロジェクト: stevesan/solid_unity
    public IEnumerator TestPillExposedAsPickupable()
    {
        GameObject pillGo = new GameObject();
        Pill       pill   = pillGo.AddComponent <Pill>();

        pillGo.AddComponent <IPickupableReference>();

        IPickupableReference pillRef = pillGo.GetComponent <IPickupableReference>();

        Assert.AreEqual(pill, pillRef.Get());

        yield return(null);
    }