summaryrefslogblamecommitdiff
path: root/test/scaladoc/run/t8672.scala
blob: 8a9b5086bdd600c8d6c98d67d93babba438803f0 (plain) (tree)































                                                       
import scala.tools.nsc.doc.model._
import scala.tools.partest.ScaladocModelTest

object Test extends ScaladocModelTest {
  override def code = """
  class C {
    
    /**
     * New in release 1.2.3.4, it works. Next sentence.
     * Next Line.
     */
    def method1 = 0

    /** Sentence no period */
    def method2 = 0

    /** Sentence period at end.*/
    def method3 = 0
  }
  """

  def scaladocSettings = ""

  def testModel(root: Package) = {
    import access._
    val ms = List("method1", "method2", "method3")
    for (m <- ms) {
      val method = root._class("C")._method(m)
      println(method.comment.get.body.summary)  
    }
  }
}